You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ex) py36: virtual environment name, python=3.6 : Python version to use
42
-
```
43
-
$ conda create --name py36 python=3.6
44
-
```
45
-
3. Activate python environment.
46
-
```
47
-
$ conda activate py36
48
-
```
49
-
4. Turn off the activation of the python environment setting called base automatically when connecting to the shell.
50
-
(To ensure that the existing Python version is not changed.)
51
-
```
52
-
$ conda config --set auto_activate_base false
53
-
```
54
-
## 📄 <aname="note"></a>Note
55
-
56
-
### About Miniconda
57
-
If you don't need the Python package that is additionally installed when installing Anaconda, you can use [Miniconda][mini], a minimal installer for conda.
0 commit comments