1.使用pip命令在国内源下载需要的库
下面使用清华源,在cmd中输入如下命令就可以了
pip install i https://pypi.tuna.tsinghua.edu.cn/simple 包名==版本号
2.如果出现报错信息,Cannot unpack file…这种情况,比如下面这种
ERROR: Cannot unpack file C:\Users\wpp\AppData\Local\Temp\pip-unpack-rqlph24p\simple (downloaded from C:\Users\wpp\AppData\Local\Temp\pip-req-build-7a0cap2f, content-type: text/html; charset=utf-8); cannot detect archive format ERROR: Cannot determine archive format of C:\Users\wpp\AppData\Local\Temp\pip-req-build-7a0cap2f
3.那么可以使用如下cmd命令
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn 包名
4.下载完毕后可以在cmd中输入
pip list
来查看已经拥有的库
5.在cmd中使用
where python
获得python的安装路径C:\Users\m\AppData\Local\Programs\Python\Python38-32\python.exe
6.在C:\Users\m\AppData\Local\Programs\Python\Python38-32\下找到 site-package文件夹,在里面找到你安装的库文件夹,有两个,全部复制
7.将其复制在Pycharm如下的文件夹下
之后就可以愉快使用啦