如何列出 python 中存在的库?
例如,在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
应该这样做(来自此处)。
注意:当我这样做时,由于其中一个库(我在 Ubuntu 上)而出现分段错误。
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).
这个问题的答案此处:
help Python 提示符中的 ('modules')
或常规 shell 中的pydoc 模块
。This question is answered here:
help('modules')
in a Python prompt, orpydoc modules
in a regular shell.因为有很多方法。
你可以尝试模块yolk
并使用列出已安装的模块
它更强大。它还可以让您检查更新。有关详细信息,请参阅文档。我已经经常使用这个包了。
Since there are many ways.
You can try module yolk
and list installed modules using
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.
安装
pip
并执行pip freeze
。如果您使用的是 virtualenv,则它已经安装在其中。
Install
pip
and dopip freeze
.If you are using virtualenv, it is already installed in it.