Si al instalar cryptography pip no para de tirarte algun error. Lo más probable es que te falte instalar alguna libreria, de C por ejemplo, para que pueda instalarse cryptography
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
Command "/home/eduzen/.virtualenvs/website/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-S07rhH/cryptography/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-uIQd1i-record/install-record.txt --single-version-externally-managed --compile --install-headers /home/eduzen/.virtualenvs/website/include/site/python2.7/cryptography" failed with error code 1 in /tmp/pip-build-S07rhH/cryptography/
Para Debian and Ubuntu, se soluciona instalando los siguientes paquetes:
sudo apt-get install build-essential libssl-dev libffi-dev python-dev
Para Fedora and RHEL-derivatives, el comando es el siguiente:
sudo yum install gcc libffi-devel python-devel openssl-devel