how to activate miniconda environment code example
Example 1: conda create environment based on requirements.txt
# using pip
pip install -r requirements.txt
# using Conda
conda create --name <env_name> --file requirements.txt
Example 2: conda list environments
conda info --envs
Example 3: conda environment.yml
conda env create -f environment.yml
Example 4: make a new environment conda
conda create -n test_env python=3.6.3 anaconda
Example 5: how to start miniconda
conda --version