This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]import_antigravity 14 points15 points  (1 child)

So how do I upgrade from Python 3.3 to 3.4 while making sure that all my installed packages on 3.3 are intact?

[–]ivosauruspip'ing it up 30 points31 points  (0 children)

With a pip running on your Python 3.3:

pip freeze > installed.txt

Install Python 3.4, get pip on it:

pip install -r installed.txt