Intellipaat Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (16.4k points)

Python 3.8.0 is out, yet I haven't had the option to locate any post on the most proficient method to refresh to python 3.8 utilizing conda - perhaps they will wait for the authority's official release? Any proposals? 

2 Answers

0 votes
by (26.4k points)

You can also update your python variant to 3.8 in conda utilizing the command

conda install -c anaconda python=3.8

As per the documentation. Despite the fact that not all packages uphold 3.8 yet, running 

conda update --all

may resolve some reliance failures. You can likewise establish another environment called py38 utilizing this command

conda create -n py38 python=3.8

Want to become a Python expert? Do Come and join the python certification course and get certified.

Wanna know more details, do check out our video tutorial...

0 votes
ago by (2.6k points)
To upgrade your Python version to 3.8 first, you need to activate your conda environment, where you want to upgrade Python.

Use the following command to activate: conda activate environment_name

If you want to create a new environment, you can create by running the

Command: conda create -n environment_name python=3.8

To upgrade Python in an existing environment, use the following command: conda install python=3.8

Now you can confirm the installation by checking the version using the command: python –version

31k questions

32.9k answers

507 comments

693 users

Browse Categories

...