Create a new virtual environment with Miniconda
conda create --name <venv new name>
Optionally, specify a Python version:
conda create --name <venv new name>> python=3.5
Activate and start using the new virtual environment:
conda activate <venv name>
View all environments:
conda env list
Export an enivornment:
conda env export > environment.yml
Remote an enivornment:
conda env remove --name <venv name>