如何列出 python 中存在的库?

发布于 2024-12-20 14:24:15 字数 111 浏览 0 评论 0原文

例如,在 Rails 中,您可以创建“gem 列表”,它将显示您已安装的所有 gem。

我知道如何在 python 中做到这一点吗?另外,我正在使用 virtualenv,不确定这是否有帮助?

For example, in rails you can do a 'gem list' and it will show all of the gems that you have installed.

Any clue how I can do this in python? Also, I am using virtualenv, not sure if that helps?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

源来凯始玺欢你 2024-12-27 14:24:15
help('modules')

应该这样做(来自此处)。

注意:当我这样做时,由于其中一个库(我在 Ubuntu 上)而出现分段错误。

help('modules')

is supposed to do it (from here).

Note: When I did it, I got a segmentation fault due to one of the libraries (I'm on Ubuntu).

红颜悴 2024-12-27 14:24:15

这个问题的答案此处

help Python 提示符中的 ('modules') 或常规 shell 中的 pydoc 模块

This question is answered here:

help('modules') in a Python prompt, or pydoc modules in a regular shell.

绮筵 2024-12-27 14:24:15

因为有很多方法。

你可以尝试模块yolk

easy_install yolk 或 pip install yolk

并使用列出已安装的模块

蛋黄-l

它更强大。它还可以让您检查更新。有关详细信息,请参阅文档。我已经经常使用这个包了。

蛋黄-U

Since there are many ways.

You can try module yolk

easy_install yolk or pip install yolk

and list installed modules using

yolk -l

It's far more powerful. It can also allow you too check for updates. See the documentation for details. I have been using this package a lot.

yolk -U

凉城 2024-12-27 14:24:15

安装pip并执行pip freeze

如果您使用的是 virtualenv,则它已经安装在其中。

Install pip and do pip freeze.

If you are using virtualenv, it is already installed in it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文