Back

Explore Courses Blog Tutorials Interview Questions
0 votes
3 views
in Python by (280 points)

Hello, everyone. I'm totally new to conda package and I just want the latest version of python to use f strings in my program?

How to upgrade to Python 3.6?

1 Answer

0 votes
by (26.4k points)
edited by

1st Method

Internally, Anaconda has not updated to 3.6

You want to type 

conda update python

Then, if you want to update a major python version, for example/- 3.5 to 3.6, you have to type

conda install python=$pythonversion$

2nd Method:

Its time to create a new environment

conda create --name py36 python=3.6

Next method:-

To get the latest version, type

conda create --name py365 python=3.6.5 --channel conda-forge

you can type your latest version at 3.6.5

Want to learn more about Python, Come and join: Python training course

If you want to know more about this topic, Do check out :

Related questions

0 votes
1 answer
0 votes
2 answers
0 votes
1 answer
0 votes
2 answers
asked Oct 3, 2019 in Python by Tech4ever (20.3k points)
0 votes
1 answer

Browse Categories

...