https://github.com/rustkas/lounching-conda
My notes
https://github.com/rustkas/lounching-conda
Last synced: about 1 month ago
JSON representation
My notes
- Host: GitHub
- URL: https://github.com/rustkas/lounching-conda
- Owner: rustkas
- Created: 2024-05-23T02:33:12.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-23T02:34:12.000Z (about 2 years ago)
- Last Synced: 2025-01-26T10:43:54.142Z (over 1 year ago)
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```