Reputation: 5058
Using the following command
pip install quandl
Getting the following error:
build/temp.linux-x86_64-2.7/_openssl.c:434:30: fatal error: openssl/opensslv.h: No such file or directory
compilation terminated.
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
----------------------------------------
Command "/usr/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-i9EhxV/cryptography/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-8wUBuY-record/install-record.txt --single-version-externally-managed --compile --user --prefix=" failed with error code 1 in /tmp/pip-build-i9EhxV/cryptography/
Upvotes: 0
Views: 615
Reputation: 24
As mentioned above, you have to install ---libssl-dev--- and you have to write quandl all lowercase (not Uppercase as you did)..."import quandl".
Upvotes: 1
Reputation: 6794
You are missing oppenssl development headers. On Debian/Ubuntu the package is probably called libssl-dev
.
Upvotes: 1