Reputation: 105
On my Raspberry Pi I have installed Paramiko. When I installed it, it came up with an error, something like "pycrypto didn't install". I then used pip and easy_install to try and install pycrypto, but an error comes up with that, something like failed with error code 1 in /root/build/crypto
How can I install pycrypto?
I am using a Raspberry Pi with Raspbian Wheezy.
Upvotes: 2
Views: 1376
Reputation: 105
Fixed it!
I did: sudo apt-get install python-dev
and then installed pycrypto
again with pip
. That worked!
Upvotes: 1