Pentagon98
Pentagon98

Reputation: 123

Python3 can't install bcrypt

When i try to install bcrypt, with python3 -m pip install bcrypt,

i get this :

`Command /usr/bin/python3 -c "import setuptools, tokenize;file='/tmp/pip-build-vhc0qtab/bcrypt/setup.py';exec(compile(getattr(tokenize, 'open', open)(file).read().replace('\r\n', '\n'), file, 'exec'))" install --record /tmp/pip-v9cb4je7-record/install-record.txt --single-version-externally-managed --compile --user failed with error code 1 in /tmp/pip-build-vhc0qtab/bcrypt Storing debug log for failure in /home/vkristof/.pip/pip.log

The debug log:

http://pastebin.com/UEa3WEG3

Upvotes: 4

Views: 3653

Answers (1)

hiro protagonist
hiro protagonist

Reputation: 46869

one of the error messages states, that libffi is missing. on a debian-like system you could try $ sudo apt-get install libffi6 libffi-dev.

Upvotes: 5

Related Questions