文章目录
  1. 1. apt-get something:
    1. 1.1. then use this method:
    2. 1.2. or use this one:

apt-get something:

1
2
3
apt-get python-openssl
apt-get libnss3-tools
apt-get python-dev

then use this method:

1
2
get-pip.py https://bootstrap.pypa.io/get-pip.py
pip install pycrypto

or use this one:

1
2
3
4
5
wget https://pypi.python.org/packages/source/p/pycrypto/pycrypto-2.5.tar.gz	
tar -zxvf pycrypto-2.5.tar.gz
cd pycrypto-2.5
python setup.py
sudo python setup.py install
文章目录
  1. 1. apt-get something:
    1. 1.1. then use this method:
    2. 1.2. or use this one: