pycharm写Django博客项目安装包记录

之前电脑系统重置了一次,发现有些pycharm里有些包丢失或者不能用了,有些包的下载方式还不太一样,在这留个底,发现了就继续补充

这里写自定义目录标题

    • Django
    • beautifulsoup4
    • mysqlclient
    • six
    • urllib3
    • django-simple-captcha
    • future
    • selenium

Django

pip install django==2.2 -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

beautifulsoup4

pip install beautifulsoup4

mysqlclient

这个安装可以参考这个文章

https://blog.csdn.net/P_omelo/article/details/106109864

six

pip install six

urllib3

pip install urllib3

django-simple-captcha

pip install django-simple-captcha -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

future

pip install future

selenium

pip install selenium

你可能感兴趣的:(pycharm写Django博客项目安装包记录)