Are there any easy installation tools like “perl -MCPAN -e shell;” to install python modules and its dependents???
Are there any easy installation tools like perl -MCPAN -e shell; to install python
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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:
If you have
easy_installalready on your system, it is advisable to runeasy_install pipto upgrade to pipBoth of these install packages from the Python Package Index (pypi)
The package that provides the
easy_installcommand is usually called python-setuptools (or something similar)