5

I have installed virtualenv version 1.4.9 and the latest version is 1.6.1. How do I update to version 1.6.1. Do I have to uninstall version 1.4.9? If so, how do I uninstall it?

Joshua White
  • 197
  • 1
  • 7
  • @Blender If I remember correct, I used the command 'sudo apt-get install python-virtualenv', then I tried to install version 1.6.1 through easy_install and I think it only sort of re-install version 1.4.9. When I run 'virtualenv --version' I get 1.4.9 – Joshua White Jun 28 '11 at 01:24

2 Answers2

6

Latest version is 1.6.1
use sudo pip install virtualenv it will upgrade incase you are using1.4.x version.
It advised to use pip over easy_install look here for the reasons

Community
  • 1
  • 1
Kracekumar
  • 19,457
  • 10
  • 47
  • 56
1

no, you don't. newer installed version of virtualenv automatics override older installed version.

if I remember currently, use this to install:

sudo easy_install virtualenv==1.6.1
linjunhalida
  • 4,538
  • 6
  • 44
  • 64