1.更换源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
2.升级源
python -m pip install --upgrade pip
在线安装
pip install 模块名
如果网络不好可以使用国内镜像, pip install xx -i http://xxx
国内的几个常用镜像地址:
豆瓣 : https://pypi.douban.com/simple
中国科学科技大学 : https://mirrors.ustc.edu.cn/pypi/web/simple/
清华大学 :https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/
离线安装
下载好压缩包 ->解压 -> 在解压目录的当前文件夹下,打开终端
python setup.py install
.whl文件安装 :
pip install xxx.whl
Pycharm换源
评论 (0)