Saturday, May 4, 2024
 Popular · Latest · Hot · Upcoming
21
rated 0 times [  21] [ 0]  / answers: 1 / hits: 167907  / 3 Years ago, tue, june 22, 2021, 7:50:48

I have tried this and this and this and this



None of those install python-dev, I got my amd64 system, 14.04 up and running, as I try to install wagtail, a django cms, I get the error:



     pysass.c:4:20: fatal error: Python.h: No such file or directory

#include <Python.h>

^

compilation terminated.

error: command 'x86_64-linux-gnu-gcc' failed with exit status 1

----------------------------------------
Cleaning up...
Command /usr/bin/python -c "import setuptools, tokenize;__file__='/tmp/pip_build_root/
libsass/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace
('
', '
'), __file__, 'exec'))" install --record /tmp/pip-ojWg1O-record/install-
record.txt --single-version-externally-managed --compile failed with error code 1 in
/tmp/pip_build_root/libsass
Storing debug log for failure in /home/payload/.pip/pip.log


How can I fix this and install the package?



It's because of the missing Python.hc header which is included in the python-dev package.



When I tried the above links, it says:



apt-get install python-dev



Package python-dev is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
python

E: Package 'python-dev' has no installation candidate


for apt-get install python2.7-dev



Package python2.7-dev is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'python2.7-dev' has no installation candidate


I have researched on the debian archives and found a package for python 2.7.8-1 but that couldn't be installed.



Tried this on launchpad too but doesn't work.


More From » 14.04

 Answers
7

Are you sure you are doing it right?



This is my output for # apt-get install python2.7-dev



root@olympus:/home/zeus# apt-get install python2.7-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
libexpat1-dev libpython2.7-dev
The following NEW packages will be installed:
libexpat1-dev libpython2.7-dev python2.7-dev
0 upgraded, 3 newly installed, 0 to remove and 7 not upgraded.
Need to get 22.4 MB of archives.
After this operation, 35.0 MB of additional disk space will be used.
Do you want to continue? [Y/n]


Try doing this as root (su)



Also, try running # apt update and make sure Multiverse and universe are enabled (See How do I enable the "Universe" repository?). I also got backports enabled in my system, not sure whether that makes a difference in this case.


[#23215] Wednesday, June 23, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
calronze

Total Points: 0
Total Questions: 110
Total Answers: 112

Location: Belarus
Member since Thu, Aug 11, 2022
2 Years ago
;