Overview
setuptools
is a collection of enhancements to the Python distutils
that allow you to more easily build and distribute Python packages, especially ones that have dependencies on other packages.
To run the commands in this article, you must log into your server via SSH with your Shell user. View the following articles for more information:
You can easily install setuptools
to work with your version of Python. (Note that virtualenv will set up setuptools automatically.)
[server]$ mkdir ~/soft [server]$ cd ~/soft [server]$ wget https://peak.telecommunity.com/dist/ez_setup.py [server]$ python ez_setup.py
Now you have the easy_install
script installed in your ${RUN}/bin directory.