Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I tried installing Python 2.7 without root on a remote linux machine. I ran the commands

./configure prefix=/  
make install DESTDIR=/xxx/yyy/ 

where /xxx/yyy/ is a directory for which I have read-write access.

I ran into a problem at the end. It said:

building dbm using gdbm INFO: Can't locate Tcl/Tk libs and/or headers

Python build finished, but the necessary bits to build these modules were not found: _tkinter bsddb185 dl imageop sunaudiodev To find the necessary bits, look in setup.py in detect_modules() for the module's name.

running build_scripts running install_lib creating /lib/python2.7 error: could not create '/lib/python2.7': Permission denied

Did I take the correct steps in installing it without root access? (i.e., my configure and make commands?) Can anyone tell me why it would not install properly?

Thanks,
ktm

share|improve this question

2 Answers

You should have prefix=/xxx/yyy. With prefix=/, it tries to install the libraries to /lib/python2.7, rather than /xxx/yyy/lib/python2.7.

share|improve this answer
I did this, but then it installed the bin/share/lib files in /xxx/yyy/xxx/yyy. I ended up renaming the paths, to reflect the directory structure that I wanted (certainly not that redundant path!) and I am hoping that it will cause no path conflicts. – ktm5124 Apr 28 '11 at 20:30

Don't compile, get the pre-built binary from ActiveState.

share|improve this answer
Why doesn't everyone do this? Is there a catch? – Gabriel Fair Aug 11 '12 at 22:25
@GabrielFair - the community license has certain restrictions... see activestate.com/activepython/license-agreement – Sridhar Ratnakumar Aug 13 '12 at 17:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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