The version of Python included in the Anaconda installer was 3.7, so I was wondering if 3.8 couldn't be used yet, but it seems to be different.
If you read "Anaconda Individual Edition 2020.02: New Name, Exciting Features", major OSS projects are not compatible with 3.8. Therefore, it is written that the installer is set to 3.7.
As you can see in the link above, when you run conda create -n py38 anaconda = 2020.02 python = 3.8
, you can use 3.8 normally.
By the way, if you want to create an environment only for python3.8, you can use conda create -n py38 python = 3.8
.
Recommended Posts