Ask Your Question
1

How to install python easy_install (python distutils) in root or non-root account?

asked 2010-04-20 06:29:10 -0500

Evgeny gravatar image Evgeny flag of Chile
11059 50 84 182
http://askbot.org/

Many python packages (and some required for Askbot) are distributed via distutils - what if I don't have this tool? How do I install it?

What to do if I don't have administrator privilege?

delete close flag offensive retag edit

1 Answer

Sort by ยป oldest newest most voted
1

answered 2010-04-20 06:38:17 -0500

Evgeny gravatar image Evgeny flag of Chile
11059 50 84 182
http://askbot.org/

updated 2010-04-20 06:52:37 -0500

first check - maybe you already have easy_install?

Type: which easy_install. If some path is printed - probably you don't need to go through this (but there may be a case when you have a wrong version of easy_install - and then you will need to address this issue. This may happen if you have more than one version of python on the same system.)

Installation from source code

Source code installation will work on all systems and will adapt to your version of Python.

  • Download source distribution of Distutils from http://pypi.python.org/pypi/setuptools (file with extension .tar.gz). For example (version current at the time of this writing):

    wget http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c11.tar.gz#md5=7df2a529a074f613b509fb44feefe74e
    
  • unzip the file, go inside the source directory:

    tar xvfz setuptools-0.6c11.tar.gz
    cd setuptools-0.6c11
    
  • install the package (assuming you are logged in as root)

    python setup.py install
    

If you do not have root privilege some more work will need to be done (only once though)

Which version of python do you have? Let's assume it's 2.4.

    mkdir /path/to/your/python-packages #assuming that directory /path/to/your and is yours
    mkdir /path/to/your/python-packages/lib
    mkdir /path/to/your/python-packages/lib/python2.4/
    mkdir /path/to/your/python-packages/lib/python2.4/site-packages
    PYTHONPATH=/path/to/your/python-packages/lib/python2.4/site-packages
    export PYTHONPATH
    python setup.py install --prefix=/path/to/your/python-packages

That's it. You can now easy_install python modules!

One more thing - you will need to add path to easy_install to your system path variable (will update the post in a bit).

link publish delete flag offensive edit

Your answer

Please start posting your answer anonymously - your answer will be saved within the current session and published after you log in or create a new account. Please try to give a substantial answer, for discussions, please use comments and please do remember to vote (after you log in)!

[hide preview]

Reliable Askbot Hosting

Create your Q&A site at askbot.com. Managed Askbot hosting at just $15/mo. Dedicated hosting, support contracts, consulting services.

create your Q&A site
30 days free trial

Question tools

Follow
1 follower

subscribe to rss feed

Stats

Asked: 2010-04-20 06:29:10 -0500

Seen: 3,704 times

Last updated: Apr 20 '10