Requires a [Miniconda installation](Miniconda%20installation.md) and a [mamba environment](mamba%20environments.md) to work in.
Having a [PyEnv setup](PyEnv%20setup.md) is recomendable if you expect to work with different versions of Python.
# Search package
```shell
mamba search STRING
```
# Add package
```shell
mamba install PACKAGE
```
# Update package
```shell
mamba update PACKAGE
```
# Remove package
```shell
mamba remove PACKAGE
```
# Update mamba
```shell
mamba update -n base -c defaults mamba
```