python to anaconda (a) the basics

Used to switch the anaconda python environment. Isolated operating environment

conda info -e: to enumerate the current environment already have

conda create --name td_study1 python = 2.7: Creating an environment python2.7's name is td_study1

conda activate td_study1: switching python environment

python -V: View the current python version

conda install ipython, pip install ipython: install python library

Use conda in a development project to manage the development environment, which benefits are directly installed in the system than the python used?

1. can effectively avoid errors caused by repeatedly switching the python version

2. All projects in the isolation environment

 

Published 56 original articles · won praise 1 · views 10000 +

Guess you like

Origin blog.csdn.net/weixin_41363156/article/details/99656363