Anaconda是世界上最流行的开发和部署安全Python解决方案的平台。
使用方法
常用命令
1、列出安装包:conda list
2、搜索包:conda search tensorflow
3、查看包信息:conda info tensorflow
4、安装包:conda install tensorflow
5、卸载包:conda remove tensorflow
6、查看帮助:conda -h
7、查看有哪些虚拟环境:conda env list
8、创建虚拟环境:conda create -n your_env_name
9、激活虚拟环境:conda activate your_env_name