在Python标准库以外还存在成千上万并且不断增加的其他组件 (从单独的程序、模块、软件包直到完整的应用开发框架),访问Python 包索引即可获取这些第三方包。
显示pip的当前信息,可以使用命令:
pip show pip
执行pip升级命令:
python -m pip install -U pip
格式:pip install 库的名称 -i 国内源的网站。例如:
pip install scrapy -i https://pypi.tuna.tsinghua.edu.cn/simple
国内源可选镜像:
阿里云 https://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 豆瓣(douban) https://pypi.douban.com/simple/ 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/ 中国科学技术大学 https://pypi.mirrors.ustc.edu.cn/simple/
linux:修改 ~/.pip/pip.conf (没有就创建一个), 内容如下:
[global]
index-url=https://pypi.tuna.tsinghua.edu.cn/simple
windows:直接在user目录中创建一个pip目录,如:C:\Users\xx\pip,新建文件pip.ini,内容如下:
[global]
index-url=https://pypi.tuna.tsinghua.edu.cn/simple
1.选择当前项目的Python解释器配置项
2.选择具体想要安装包的解释器
3.点击“+”号
4.在弹出窗口输入想要的安装包名称
5.选中想要的安装包
6.点击“Install Package”进行安装。
安装过程可以点击“OK”关闭当前界面。进度条在Pycharm的最下方。安装成功或失败,右下方会有弹出窗口提示。
安装好的包默认在对应解释器的site-packages文件夹中,例如:D:\soft\python3.8.6\Lib\sitepackages