Installation environment :conda create -n [ Environment name ] python=[ edition ]
Such as conda create -n py37 python=3.7
Usage environment :conda activate [ Environment name ]
Such as conda activate py37
Installation dependency : python -m pip install -r [ file name ]
python -m pip install -r requirements.txt ( install requirements.txt Third party dependent libraries in files )