赞
踩
由于Python在下载包时,容易出现超时等问题,主要是因为Python库的服务器都在国外,国内下载库的速度会很慢,所以需要配置国内镜像源来加快下载速度
官方镜像源:
https://pypi.python.org/simple
'''
清华:https://pypi.tuna.tsinghua.edu.cn/simple
豆瓣:http://pypi.douban.com/simple
阿里云:http://mirrors.aliyun.com/pypi/simple
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple
华中理工大学:http://pypi.hustunique.com
山东理工大学:http://pypi.sdutlinux.org
'''
目前国内使用最广泛的是清华的镜像源
全局镜像源配置,在PyCharm终端依次执行如下命令:
pip install --upgrade pip
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
如果不想使用全局镜像源,可以通过如下命令单次使用镜像源下载第三方库:
pip install -i <镜像源地址> <第三方库名>
1) 点击PyCharm底部Python Packages,点击设置:
2) 点击+(减号是删除),输入更换后的镜像源,点击OK即可
方式1(推荐):通过Terminal
1) 点击PyCharm底部Terminal终端:
2) 在Windows PowerShell命令行执行安装第三方库的命令:
pip install <第三方库名>
例如安装NumPy:
pip install numpy
方式2:通过Settings
1) File -> Settings -> Project -> Python Interpreter -> 点击+(此处可看到所有已安装的库)
2) 搜索需要安装的库,从下面列表中选择目标库,点击Install Package安装即可
安装成功会在Python Interpreter中显示
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。