Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to downgrade Python from 3.7 to 3.5 in Anaconda [closed]

I've been trying to downgrade the version of Python in Anaconda as it doesn't support TensorFlow and I get the following error(s):

screenshot of the error

like image 917
Anonymous Avatar asked Dec 29 '18 18:12

Anonymous


People also ask

Can I downgrade Python version in anaconda?

How do I downgrade a python package? Upgrade and Downgrade a Python Package. Upgrade and Downgrade are similar, both of which follow two steps: (1) uninstall the previous package; (2) install the current package. Update a package by pip: pip install -U [package name].

How do I switch between versions in Python 3?

As a standard, it is recommended to use the python3 command or python3. 7 to select a specific version. The py.exe launcher will automatically select the most recent version of Python you've installed. You can also use commands like py -3.7 to select a particular version, or py --list to see which versions can be used.


1 Answers

You can create a new environment for your experiments:

conda create -n new_environment python=3.5

Or install anaconda with another python version (http://docs.anaconda.com/anaconda/user-guide/faq/#how-do-i-get-the-latest-anaconda-with-python-3-5)

like image 156
guru Avatar answered Oct 20 '22 22:10

guru