How to upgrade python 2.7.8 to 2.7.9 in Anaconda without conflict of other components in their environment?

After successfully installing Anaconda on Windows 7, I realized that the default version of Python is 2.7.8. However, I need 2.7.9. So how do I upgrade?

+6
source share
3 answers

Unfortunately, you cannot update Python in the Anaconda root environment on Windows. See fooobar.com/questions/551509 / ....

+2
source

Your anaconda installation ships its own conda package conda . You can use it to update python packages as well as the python interpreter.

To update the python interpreter in your default environment, all you have to do is run the following command from the command line:

 conda update python 
+1
source

Install the new version of Anaconda from your website. It will also improve your Anaconda and python. Also, uninstall the previous version of Anaconda.

0
source

Source: https://habr.com/ru/post/984182/


All Articles