up vote 8 down vote favorite
6
share [g+] share [fb]

I extracted, configured and used make for the installation package in my server.

However, I could not use make install. I get the error

[~/wepapps/python/Python-2.6.1]# make install
/usr/bin/install -c python /usr/local/bin/python2.6
/usr/bin/install: cannot create regular file `/usr/local/bin/python2.6': Permission denied
make: *** [altbininstall] Error 1

I run the folder with

chmod +x Python-2.6.1

I get still the same error.

How can I run make install without sudo access?

link|improve this question

feedback

2 Answers

up vote 29 down vote accepted

How can I install to a path under my home directory?

mkdir /home/masi/.local

cd Python-2.6.1
make clean
./configure --prefix=/home/masi/.local
make
make install

Then run using:

/home/masi/.local/bin/python

Similarly if you have scripts (eg. CGI) that require your own user version of Python you have to tell them explicitly:

#!/home/masi/.local/bin/python

instead of using the default system Python which “#!/usr/bin/env python” will choose.

You can alter your PATH setting to make just typing “python” from the console run that version, but it won't help for web apps being run under a different user.

If you compile something that links to Python (eg. mod_wsgi) you have to tell it where to find your Python or it will use the system one instead. This is often done something like:

./configure --prefix=/home/masi/.local --with-python=/home/masi/.local

For other setup.py-based extensions like MySQLdb you simply have to run the setup.py script with the correct version of Python:

/home/masi/.local/bin/python setup.py install
link|improve this answer
2  
If you do not have setuptools in your system, please, see the post stackoverflow.com/questions/624671/… – Masi Mar 9 '09 at 17:50
feedback

You can't; not to /usr, anyway. Only superusers can write to those directories. Try installing Python to a path under your home directory instead.

link|improve this answer
What is "a path under my home directory"? – Masi Mar 7 '09 at 23:48
How can I install to a path under my home directory? – Masi Mar 7 '09 at 23:49
Take a look at the documentation on installing ( docs.python.org/using/unix.html ), particularly the part about paths and files. – kquinn Mar 7 '09 at 23:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.