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!

Varii


Prerequisites: Have a terminal (I'm using Ubuntu 18.04)


Anaconda CLI

Anaconda is an open-source package and deployment manager for Python and R. You can install it here.

List Environments

$ conda env list

Create Environment

create an env with python version 3.7

$ conda create -n <envName> python=3.7 

Clone Environment from Existing

$ conda create --clone <existingEnvName> --name <newEnvName>

Activate/Deactivate Environments

$ conda activate <envName>
$ source deactivate <envName>

Delete an Environment or Package