1

Is there a way to upgrade e.g. python 3.4.1 to 3.4.3 on my virtualenv? I can't see and google results teaching to upgrade from pythong 3.x to 3.+x

Thanks!

EDIT: I have to emphasize that i am talking about upgrading my virtualenv's python 3 to a more recent version, not upgrading python 2.

bonbon.langes
  • 1,718
  • 2
  • 22
  • 37
  • 1
    possible duplicate of [Can existing virtualenv be upgraded gracefully?](http://stackoverflow.com/questions/2170252/can-existing-virtualenv-be-upgraded-gracefully) – Peter Wood Mar 19 '15 at 10:44
  • It's better to create a new virtualenv, it's intended to be thrown away and rebuilt. – Simeon Visser Mar 19 '15 at 10:57
  • just run `python3.4.3 -mvirtualenv /path/to/your-virtualenv` if you don't want to recreate it from scratch. – jfs Mar 22 '15 at 16:14

1 Answers1

1

I have fixed this by just installing a more recent version of Python 3 (Python 3.4.3 to be exact). My virtualenvs running Python 3.4.1 seemed to have upgraded by themselves.

bonbon.langes
  • 1,718
  • 2
  • 22
  • 37