-
Notifications
You must be signed in to change notification settings - Fork 354
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cffi fails to install: ImportError: No module named setuptools_ext #268
Comments
@tbelliard Should be fixed in #295 |
spang
pushed a commit
that referenced
this issue
Mar 8, 2017
Currently setup.sh keeps failing for me on a Debian 8 VM. Turns out the error is similar to here pyca/cryptography#2280, which is due to apt installed of cffi version being less than 1.1. Command /usr/bin/python -c "import setuptools, tokenize;__file__='/tmp/pip_build_root/cryptography/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-X8h31p-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /tmp/pip_build_root/cryptography Storing debug log for failure in /home/nikolai/.pip/pip.log This PR also fixes #261 #267 #268 setup.sh script now installs libssl-dev #261 added cffi to requirements.txt file which fixes the error in pyca/cryptography#2280 and #268
Should be fixed in the latest release! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
On Debian 8 (jessie), for some reason, the cryptography dependency 'cffi' fails to install when running setup.sh, returning the following error:
A bit of googling provided the following workaround : just install cffi manually with
pip install --upgrade cffi
and then run setup.sh again.Being unfamiliar with pip I have no idea what is the exact cause of the problem.
The text was updated successfully, but these errors were encountered: