Bootstrap

安装crypto遇到的坑

运行python3 manage.py makemigrations 报错

ModuleNotFoundError: No module named 'cryptography'

查了各种方法,网上下载了vs14.0安装后还是不行,无意间在github上看到了cryptography这个包

用pip3 install cryptography安装成功后

再运行,就可以了

原因就是字面上的,缺少cryptography这个库

 

;