Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: python 有包/模块管理系统吗?
在红宝石中,我可以做类似的事情
gem install my-cool-gem
我如何在python中做到这一点?
您正在寻找PyPi - Python 包索引。.
你做:
pip install package
如果您安装了setuptools,那么您可以使用easy_install。我猜两者都从 PyPI 获取包。pip虽然比 easy_install更受欢迎。