Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

python pip cryptography build wheel fail

I am trying to install python packages like quandl. Since I am using pip3 I am installing the package using the following command in ubuntu 16.

sudo pip3 install quandl

This gives me the following error.

Running setup.py clean for cryptography
Failed to build cryptography

I have installed wheel and cryptography as well. But it would not work. Could some one help me with this?

like image 340
Baradwaj Aryasomayajula Avatar asked Dec 24 '22 03:12

Baradwaj Aryasomayajula


1 Answers

Cleared the error. I installed the Openssl. I upgraded cryptography.

Install Open-ssl using the following command for Ubuntu.

sudo apt-get install libssl-dev
like image 87
Baradwaj Aryasomayajula Avatar answered Dec 26 '22 17:12

Baradwaj Aryasomayajula