The server creates its own python environment

Under the Linux platform, creating your own python environment is particularly simple

Operation steps
1. Create a new virtual environment first

conda create -n tensorflow python=3.6

Create an environment named tensorflow

Second, activate the virtual environment

activate tensorflow

Three, switch environment

1. Check the existing virtual environment

conda env list

2. Switch to your own newly created environment

conda activate tensorflow

3. Install the tensorflow framework in the environment

conda install tensorflow

It is not easy to organize a blog. If the guest official thinks it is good, please give a thumbs up! ! !

Guess you like

Origin blog.csdn.net/fxwentian/article/details/114328814