An open API service indexing awesome lists of open source software.

https://github.com/rustkas/lounching-conda

My notes
https://github.com/rustkas/lounching-conda

Last synced: about 1 month ago
JSON representation

My notes

Awesome Lists containing this project

README

          

# Lounching conda

Working with Anacondata environment

```
conda list
conda --version
conda env list
conda create --name example

conda activate example
conda update --all
conda install -c conda-forge ipympl
conda install nodejs
pip install jupyterlab_widgets
conda install -c conda-forge jupyterlab
conda install -c conda-forge matplotlib
conda update --all

conda activate base
conda env remove -n example
conda env remove -n myenv

conda info --envs

conda activate base
conda clean --all

```