I have an Anaconda (not miniconda) Python 2.7 install on Windows. I would like to update the version of Python installed to the latest minor version (2.7.9), which I see is available in the channels that conda
is configured to use. However, typing conda update python
basically says:
# All requested packages already installed.
# packages in environment at C:\Anaconda:
#
python 2.7.5 2
How does one update to another minor version of Python on Windows? I guess that since conda
is written in Python and Windows does not let you overwrite or delete open files, that might be slightly difficult to do on Windows... But is it possible?