开发者

How to install python modules and dependents easily?

Are there any easy installation tools like "perl -MCPAN -e shell;" to inst开发者_StackOverflow社区all python modules and its dependents???


pip is the most up to date tool to do this: you use it by issuing the command pip install <packagename>

The "old" way of doing the same is to easy_install:

easy_install <packagename>

If you have easy_install already on your system, it is advisable to run easy_install pip to upgrade to pip

Both of these install packages from the Python Package Index (pypi) The package that provides the easy_install command is usually called python-setuptools (or something similar)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜