TOC
Anacode simple usage
1.1 Download and install –Mac os
Download file: click to download
Install after download.
Run command in terminal to see your anconda version:
$conda -V
conda 4.10.1
Use conda info
to see conda configuration:
(base) $ conda info
2.Anaconda Usage
2.1 List all enviroments
(base) $ conda info -e
# conda environments:
#
base /Users/Rhys/opt/anaconda3
2.1 create an enviroment
(base) $ conda create -n py36 python=3.6
2.2 activate an enviroment
(base) $ conda activate py36
(py36) $
The environment had changed after activating;
2.3 remove an environment;
conda remove --name <name> --all
Example:
$ conda remove --name py36 --all
2.4 open jupyter
$ conda update --all --yes
$ jupyter notebook
REFERENCE: https://mas-dse.github.io/startup/anaconda-windows-install/
「点个赞」
点个赞
使用微信扫描二维码完成支付
