[/home/kezunlin/anaconda3] >>> PREFIX=/home/kezunlin/anaconda3 installing: python-3.7.3-h0371630_0 ... Python 3.7.3 ... installing: scikit-image-0.14.2-py37he6710b0_0 ... installing: scikit-learn-0.20.3-py37hd81dba3_0 ... installing: astropy-3.1.2-py37h7b6447c_0 ... installing: statsmodels-0.9.0-py37h035aef0_0 ... installing: seaborn-0.9.0-py37_0 ... installing: anaconda-2019.03-py37_0 ... installation finished. Do you wish the installer to initialize Anaconda3 by running conda init? [yes|no]
If you'd prefer that conda's base environment not be activated on startup, set the auto_activate_base parameter to false:
conda config --set auto_activate_base false
Thank you for installing Anaconda3!
conda config –set auto_activate_base false
check version
1 2 3 4 5 6 7
conda --version conda 4.6.11
conda update conda
conda --version conda 4.6.14
Managing Environments
create new env
When you begin using conda, you already have a default environment named base. You don’t want to put programs into your base environment, though. Create separate environments to keep your programs isolated from each other.
When you create a new environment, conda installs the same Python version you used when you downloaded and installed Anaconda. If you want to use a different version of Python, for example Python 3.5, simply create a new environment and specify the version of Python that you want.