All-in-One Command Line Interface commands! Conda, Git & Virtual Envs and Vercel in Ubuntu :)
Written By Varii
Like this post? Follow me for latest news in the Industry 4.0 life!
Prerequisites: Have a terminal (I'm using Ubuntu 18.04)
Anaconda is an open-source package and deployment manager for Python and R. You can install it here.
$ conda env list
create an env with python version 3.7
$ conda create -n <envName> python=3.7
$ conda create --clone <existingEnvName> --name <newEnvName>
$ conda activate <envName>
$ source deactivate <envName>