Python pip更换清华源镜像

Python pip更换清华源镜像

  • 命令安装
  • 配置安装
  • 其它镜像

  • 在安装Python库时使用清华源镜像是为了改善库的下载速度和稳定性
  • 地址:https://pypi.tuna.tsinghua.edu.cn/simple

命令安装

  • 安装命令:

    pip install 包名 -i https://pypi.tuna.tsinghua.edu.cn/simple
    
  • 以wordcloud库为例,在终端输入后回车:

    pip install wordcloud -i https://pypi.tuna.tsinghua.edu.cn/simple
    

    Python pip更换清华源镜像_第1张图片
    Python pip更换清华源镜像_第2张图片

配置安装

  • 依次点击PyCharm的File,Settings:
    Python pip更换清华源镜像_第3张图片
  • 再依次点击Project,Python Interpreter,+:
    Python pip更换清华源镜像_第4张图片
  • 点击Manage Repositories:
    Python pip更换清华源镜像_第5张图片
  • 点击+,输入清华源镜像地址,点击OK:
    Python pip更换清华源镜像_第6张图片
  • 再点击OK:
    Python pip更换清华源镜像_第7张图片
  • 以wordcloud为例,输入想要安装的库名,点击Install Package,还能在右边选择版本:
    Python pip更换清华源镜像_第8张图片
  • 安装成功:
    Python pip更换清华源镜像_第9张图片

其它镜像

  • 豆瓣:http://pypi.douban.com/simple/

  • 阿里云:http://mirrors.aliyun.com/pypi/simple/

  • 中国科学技术大学:http://pypi.mirrors.ustc.edu.cn/simple/

你可能感兴趣的:(Python,python,pip,开发语言)