环境管理 - Conda Environment & Use conda in docker
In the last passage , we successfully download and install anaconda and pytorch. However, the one of the most important advantages to use conda instead of pip is its virtual enviroment, where you will have a clean enviroment isolated environment to focus on your experiment or development. Generally, we often use python version 3.6 (Of course, you can use one version you are familar with). Then I wil show how to create Conda Environment, and activate environment in docker. Create conda environment conda create -n python3.6 python = 3.6 Also, you can create both a python version2.7 and a python