当“pip install”时会发生什么 ”

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了当“pip install”时会发生什么 ”相关的知识,希望对你有一定的参考价值。

我们这样做的步骤顺序是什么

$ pip install <package name>

更具体的问题

  1. pip如何找到包裹?
  2. pip在哪里存储包裹?
  3. 如何卸载包?
答案

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”时会发生什么 ”的主要内容,如果未能解决你的问题,请参考以下文章

pip install中“X的构建失败”是啥意思?

当多个线程想要访问 ReentrantReadWriteLock 时会发生啥?

当堆栈和堆碰撞时会发生啥

当 Spark master 失败时会发生啥?

当我们刷新网页时会发生啥?

当 UIView 被隐藏时会发生啥?