如何查看Python安装了哪些包
这篇文章主要给大家介绍了关于如何查看Python安装了哪些包的相关资料, Conda是另一种广泛使用的Python包管理工具,它用于安装、管理和升级软件包和其依赖项,需要的朋友可以参考下
目录
- 查找是否安装了具体的包
- 怎么安装包?
- 更新包
- 总结
cmd中输入 pip list
查找是否安装了具体的包
cmd中输入 pip show -包名
怎么安装包?
如果是在cmd中,可以直接输入 pip install -包名(若在jupyter中前面加个“!”)
更新包
pip install --upgrade 包名
若出现以下报错:
Could not install packages due to an EnvironmentError:
HTTPSConnectionPool(host=‘files.pythonhosted.org’, port=443): Max retries exceeded with url:
/packages/d5/31/b026f9f7c87adf8027f51f98f392f6558982485b7202af5f9276492b2141/Pillow-9.3.0-1-cp37-cp37m-win_amd64.whl (Caused by ConnectTimeoutError(<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x00000237E4168518>, ‘Connection to files.pythonhosted.org timed out. (connect timeout=15)’))
则需要换个源下载:
pip install 包名 ``-i` `指定源``pip install -``-upgrade` `包名 ``-i` `指定源
清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple
华中理工大学:http://pypi.hustunique.com/
山东理工大学:http://pypi.sdutlinux.org/
豆瓣:http://pypi.douban.com/simple/
问题解决: