when I try to create a virtualenv that uses python2.5 I get the following error:

File "/usr/local/lib/python2.6/dist-packages/virtualenv.py", line 1489, in <module>main()
File "/usr/local/lib/python2.6/dist-packages/virtualenv.py", line 526, in main use_distribute=options.use_distribute)
File "/usr/local/lib/python2.6/dist-packages/virtualenv.py", line 609, in create_environment
site_packages=site_packages, clear=clear))
File "/usr/local/lib/python2.6/dist-packages/virtualenv.py", line 672, in install_python fix_lib64(lib_dir)
File "/usr/local/lib/python2.6/dist-packages/virtualenv.py", line 891, in fix_lib64
if [p for p in distutils.sysconfig.get_config_vars().values()
File "/usr/lib/python2.5/distutils/sysconfig.py", line 499, in get_config_vars func() 
File "/usr/lib/python2.5/distutils/sysconfig.py", line 351, in _init_posix filename = get_makefile_filename()
File "/usr/lib/python2.5/distutils/sysconfig.py", line 210, in get_makefile_filename
return os.path.join(lib_dir, "config" + (sys.pydebug and "_d" or ""), "Makefile")
AttributeError: 'module' object has no attribute 'pydebug'

I get this error by doing this command:

virtualenv -p python2.5 .

Because Ubuntu10.04 doesn't come with Python2.5 I installed it from: https://launchpad.net/~fkrull/+archive/deadsnakes

First I thought that I should installed virtualenv for Python2.5 also but that doesn't seem to work either. If I try to create a virtualenv with the following command:

sudo Python2.5 /usr/lib/python2.5/site-packages/virtualenv.py .

I end up getting the same error. I am kinda new to Ubuntu and Python and there are stil a few blank spot. Like if you have two version of Python, for Python2.6 I can just do virtualenv . But I guess to use the 2.5 one I have to call it directly like I did in the sudo command above?

Or is it completely wrong and all virtualenvs are the same and can be used with different Python versions?

Anyway my main question is how I can fix the error so I can setup a virtualenv using Python2.5. Any extra information is appreciated.

link|improve this question

What does which python2.5 return? What about which python? – Matthew Rankin Sep 3 '10 at 2:56
/usr/local/bin/python2.5 and /usr/bin/python – Pickels Sep 5 '10 at 5:14
-1 User error, per user. – fugacity Sep 29 '10 at 3:54
Care to explain ma3204? – Pickels Sep 29 '10 at 12:33
I was just following up on your answer/comment that you fixed the problem by uninstalling or cleaning up things. By default when things are installed normally, this shouldn't be an issue. – fugacity Sep 29 '10 at 22:57
show 1 more comment
feedback

4 Answers

up vote 2 down vote accepted

I had some other Python 2.5 installed. I forgot the name but something like Python 2.5 minimal and it gave some problems with the deadsnakes install. When I uninstall it everything started working fine.

link|improve this answer
feedback

You don't need two virtualenvs installed. You can tell virtualenv which python to use by using the --python argument as follows:

virtualenv --python=python2.5 <my-venv>
link|improve this answer
Crap, guess I didn't mention how I got the first error. It was by doing that cmd. I'll update my question. You answered my side question though so thank you for that. – Pickels Sep 3 '10 at 1:12
feedback

I was able to get this going in Ubuntu 10.04 Lucid Lynx (which comes with Python 2.6 installed by default) like so:

  1. Install Python 2.5 using the repository at https://launchpad.net/~fkrull/+archive/deadsnakes.

    If you don't know how to do this:

    1a. Edit /etc/apt/sources.list by adding the line: deb http://ppa.launchpad.net/fkrull/deadsnakes/ubuntu lucid main
    1b. Run 'sudo apt-get update'.
    1c. Run 'sudo apt-get install python2.5'.
    1d. Verify that python2.5 is on the PATH by running 'which python2.5'.

  2. Run 'virtualenv -p python2.5 ENV' (where ENV is whatever you want to call your environment directory).

You can then do the usual stuff like '. env/bin/activate' and so on. This method worked just fine for me, but let me know if run into problems with your setup.

link|improve this answer
feedback
sudo easy_install-2.5 virtualenv

will give you a python 2.5-specific virtualenv. Invoke it using virtualenv-2.5. You may need to apt-get install setuptools first if you don't have easy_install.

link|improve this answer
That's how I got virtualenv install on Python2.5. – Pickels Sep 3 '10 at 7:00
feedback

Your Answer

 
or
required, but never shown

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