Answers for "upgrade python version on an anaconda environment"

1

change python version in conda environment

conda install python=3.7
Posted by: Guest on April-28-2021
4

How to update python using anaconda/conda

# If want to update python type
conda update python

# To update anaconda type 
conda update anaconda

# a) If you want to upgrade between major python version like 3.5 to 3.6, you'll have to do
conda install python=$pythonversion$

# b) Method 2 - Create a new environment (Better Method)
conda create --name py36 python=3.6

# c) To get the absolute latest python(3.6.5 at time of writing)
conda create --name py365 python=3.6.5 --channel conda-forge
Posted by: Guest on May-05-2021
0

change python version of a conda environment

conda activate my_env
conda install python=3.6
Posted by: Guest on July-02-2021

Code answers related to "upgrade python version on an anaconda environment"

Python Answers by Framework

Browse Popular Code Answers by Language