This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Failed building wheel for greenlet
Type: Stage: resolved
Components: Installation Versions: Python 3.4
process
Status: closed Resolution: third party
Dependencies: Superseder:
Assigned To: Nosy List: berker.peksag, marcoconte_008, xiang.zhang
Priority: normal Keywords:

Created on 2016-05-04 15:18 by marcoconte_008, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg264825 - (view) Author: Marco (marcoconte_008) Date: 2016-05-04 15:21
I have tried to install bpython on Linux with this result

studio@linux:/usr/bin> pip install bpython
...
...
Running setup.py bdist_wheel for greenlet ... error
greenlet.h:8:20: fatal error: Python.h: No such file or directory
   #include <Python.h>
                      ^
  compilation terminated.
  error: command 'gcc' failed with exit status 1

How can I fix this error ?

MC
msg264826 - (view) Author: Xiang Zhang (xiang.zhang) * (Python committer) Date: 2016-05-04 15:26
Hmm, it's not suitable to report such problems here. You'd better google for it. At least you have to apt-get install python-dev or yum install python-devel.
msg264827 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2016-05-04 15:44
Please use greenlet's issue tracker: https://github.com/python-greenlet/greenlet/issues You'll probably need to install Python headers by using your distribution's package manager.
History
Date User Action Args
2022-04-11 14:58:30adminsetgithub: 71140
2016-05-04 15:44:04berker.peksagsetstatus: open -> closed

nosy: + berker.peksag
messages: + msg264827

resolution: third party
stage: resolved
2016-05-04 15:26:08xiang.zhangsetnosy: + xiang.zhang
messages: + msg264826
2016-05-04 15:21:33marcoconte_008setmessages: + msg264825
2016-05-04 15:18:05marcoconte_008create