I have a shared account in a web-hosting that have Python 2.4, but my code it is not compatible with 2.4. Is it possible to install Python 2.6 directly to Virtualenv?
Note: I don“t have permission to install it in the shared server.
|
I have a shared account in a web-hosting that have Python 2.4, but my code it is not compatible with 2.4. Is it possible to install Python 2.6 directly to Virtualenv? Note: I don“t have permission to install it in the shared server. |
||||
|
|
|
Here are the options for virtualenv
1) What you want to do is install python to a directory that you are able to write too. You can follow the instructions replace
|
brilliant writeup! two comments though: 1. i didn't have to do make clean before doing
./configure --prefix=/home/<user>/.localpython in fact make clean returned error. 2. virtualenv name -p=/python/path didn't worked instead virtualenv name -p /python/path did worked. I assume it's down to virtualenv version. cheers! – zzart Mar 26 '12 at 12:37 |
|
I was jailshell'd out of gcc but was able to use ActiveState Python instead in step 1: docs.activestate.com/activepython/2.7/… – Scott Stafford Jan 29 at 3:05 |
|
Here's a list of modules you need installed (on debian) to get this to work as close to a full install as possible: curl gcc build-essential libncursesw5-dev libreadline5-dev libssl-dev libgdm-dev libbz2-dev libc6-dev libsqlite3-dev tk-dev – Claudiu Mar 28 at 20:41 |
|
Pre-requisites:
Installing virtualenv with Python2.6:
|
||||
|
The usual approach is to download the source and build and install locally (but not directly in virtualenv), and then create a new virtualenv using that local Python install. On some systems, it may be possible to download and install a prebuilt python, rather than building from source. |
|||
|
|
|
No, but you can install an isolated Python build (such as ActivePython) under your This approach is the fastest, and doesn't require you to compile Python yourself. (as a bonus, you also get to use ActiveState's binary package manager) |
|||
|
|
|
This procedure installs Python2.7 anywhere and eliminates any absolute path references within your Thus, theoretically, you can drop the top level directory into a tarball, distribute, and run anything configured within the tarball on a machine that doesn't have Python (or any dependencies) installed. Contact me with any questions. This is just part of an ongoing, larger project I am engineering. Now, for the drop...
Aloha. |
|||
|
|