Anaconda prompt 命令

查看已配置的环境

conda info --env

创建激活删除环境

conda create -n py36 python=3.6 

conda activate TensorFlow

conda remove -n py36 --all

其中TensorFlow为要激活的环境名。

安装包

pip install tensorflow
pip install matplotlib
run 'pip install opencv-python' if you need only main modules
run 'pip install opencv-contrib-python' if you need both main and contrib modules
pip install -U wxPython

tensorflow为要安装的包。

查看已安装的包

pip list

中断

Ctrl+c

tensorboard 

tensorboard --logdir=
目录定位到日期
打不开的话就把http://LAPTOP-DB0IEM24:6006中LAPTOP-DB0IEM24换成localhost

创建环境 

conda create -n env_name python=3.7

 

你可能感兴趣的:(Python)