开发者

How to install python modules and dependents easily?

开发者 https://www.devze.com 2022-12-22 06:19 出处:网络
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 is

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

精彩评论

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