当“pip install”时会发生什么 ”
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了当“pip install”时会发生什么 ”相关的知识,希望对你有一定的参考价值。
我们这样做的步骤顺序是什么
$ pip install <package name>
更具体的问题
- pip如何找到包裹?
- pip在哪里存储包裹?
- 如何卸载包?
答案
1. How does pip find the package?
在网络上,来自官方存储库PyPI(Python Package Index)。所有软件包can be found here的完整列表。
2. Where does pip store the package?
它们安装在Python目录中,取决于您的操作系统。搜索PYTHON_PATH/Lib/sites-packages
,你可能会发现通过pip安装包:)
3. How to uninstall the package?
pip uninstall <package-name>
另一答案
- 在Python包索引a.k.a. PyPI中。
- 在Python安装的
Libsite-packages
目录中。 - 通常与
pip uninstall <package-name>
以上是关于当“pip install”时会发生什么 ”的主要内容,如果未能解决你的问题,请参考以下文章