PyCharm更换pip镜像源

一、PyCharm设置

  1. 点击PyCharm下方工具栏Python Packages
  2. 弹出窗口上方点击齿轮状设置按钮
  3. 点击加号 新建镜像源
  4. 输入镜像源仓库名称和镜像源地址

PyCharm更换pip镜像源_第1张图片

二、常用镜像源

1. 清华(推荐):https://pypi.tuna.tsinghua.edu.cn/simple
2. 阿里云:http://mirrors.aliyun.com/pypi/simple/
3. 中国科技大学 :https://pypi.mirrors.ustc.edu.cn/simple/
4. 豆瓣:http://pypi.douban.com/simple/

三、PyCharm依赖包导入导出

PyCharm->terminal

  • 依赖包导出至requirements文件
pip freeze > requirements.txt
  • 从requirements文件中导入依赖包
pip install -r requirements.txt

参考

链接: http://t.csdn.cn/YqbiF
链接: http://t.csdn.cn/RbO0O

你可能感兴趣的:(pycharm,pip,python)