Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #88098
| From | Ned Deily <nad@acm.org> |
|---|---|
| Subject | Re: sys.exec_prefix doesn't seem to reflect --exec-prefix path |
| Date | 2015-03-26 14:54 -0700 |
| References | <548dcac1-fa00-4fc1-81d1-ccae28cafcbc@googlegroups.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.218.1427406955.10327.python-list@python.org> (permalink) |
In article <548dcac1-fa00-4fc1-81d1-ccae28cafcbc@googlegroups.com>, Ralph Heinkel <ralph.heinkel@web.de> wrote: > on my linux box there is a python version 2.7.5 installed in /usr/local. > > Now I want to install the newer version 2.7.9, but in a different directory > to avoid clashes with the current installation. > > What I did was: > > ./configure --prefix /usr/local/Python-2.7.9 --exec-prefix > /usr/local/Python-2.7.9 > make > make install Configure arguments need to be specified with '='. Try instead: ./configure --prefix=/usr/local/Python-2.7.9 And --exec-prefix isn't needed in this case as it defaults to the value of --prefix. -- Ned Deily, nad@acm.org
Back to comp.lang.python | Previous | Next — Previous in thread | Find similar | Unroll thread
sys.exec_prefix doesn't seem to reflect --exec-prefix path Ralph Heinkel <ralph.heinkel@web.de> - 2015-03-26 05:37 -0700 Re: sys.exec_prefix doesn't seem to reflect --exec-prefix path Ned Deily <nad@acm.org> - 2015-03-26 14:54 -0700
csiph-web