Virtual Environment

[INSPECT ENVIRONMENT SETTING]
conda env list
conda config --show channels

[CREATE / REMOVE ENVIRONMENTS]
conda create --name mktscrape python=3.7
conda env remove --name mktscrape

[ACTIVATE / DEACTIVATE ENVIRONMENT]
conda activate mktscrape
activate mktscrape
conda deactivate

[ADDING CHANNELS]
conda config --add channels pytorch

#more = "https://conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html"
[FOR JUPYTER NOTEBOOK]

conda activate myenv

pip install --user ipykernel

python -m ipykernel install --user --name=myenv

jupyter kernelspec list

jupyter kernelspec uninstall myenv

#jupyter = "https://jupyter-client.readthedocs.io/en/latest/kernels.html"
#iPython = "https://ipython.org/"
#kernel  = "https://ipython.readthedocs.io/en/stable/install/kernel_install.html"