Skip to content

Commit

Permalink
Update ai_base_env.md
Browse files Browse the repository at this point in the history
  • Loading branch information
aimuch committed Aug 12, 2020
1 parent a14bcd4 commit e978368
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ai_base_env.md
Original file line number Diff line number Diff line change
Expand Up @@ -897,15 +897,15 @@ source deactivate
### Anaconda虚拟环境
**创建新的虚拟环境**
```shell
conda create -n venv python=3.6 # select python version
conda create -n venv python=3.6 pip # select python version and pip
```
**激活虚拟环境**:
```shell
source activate venv
```
**删除虚拟环境**:
```shell
conda env remove -n venv
conda env remove -n venv # conda remove -n venv --all
```
**删除缓存的安装包**:
```shell
Expand Down

0 comments on commit e978368

Please sign in to comment.