Conda/Micromamba
The easiest way to export a .yml file from a conda environment is to first activate your environment by running: 1
conda activate myvenv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19conda env export > list.yml
## win-64 and linux-64 have different label on version/number
## Export Conda Environment with minimized requirements
micromamba env export --from-history > list.yml
## like
name: uxarray
channels:
- anaconda
- conda-forge
dependencies:
- conda-forge::basemap
- conda-forge::cartopy
- anaconda::ipykernel
- conda-forge::netcdf4
- scipy
- conda-forge::uxarray==2024.11.1
- conda-forge::wrf-python1
conda env create --name myvenv --file=list.yml
or 1
2conda env export | grep -v "^prefix: " > environment.yml
conda env create -f environment.yml
Remove environment, 1
conda remove -n ENV_NAME --all
Micromamba
Micromamba is a standalone version of Mamba which is an alternative to Conda. This stack delivers a custom anaconda/miniconda type deployment based on the communities conda-forge channel with micromamba as the package manager. For more information visit micromamba documentation.
Installation
1 |
|
1 |
|
- /home/wpsze/.local/bin
- init shell? Y
- configure-forge? Y
Finally, it will initalize micromambs config on .bashrc
Export the contents of the existing environment to a YAML file.
1 |
|
Create env by given yaml
1 |
|
pip requirements file contain "@file"
- [Why does the pip requirements file contain @file instead of version number?](https://stackoverflow.com/questions/62586878/why-does-the-pip-requirements-file-contain-file-instead-of-version-number)
- https://peps.python.org/pep-0440/#direct-references
Source and activate env
1 |
|
activate or execute
Transaction finished
To activate this environment, use:
micromamba activate venv
Or to execute a single command in this environment, use:
micromamba run -n venv mycommand
clone an environment,
As stated in the answer to Cloning environment with micromamba, --clone is not an option in micromamba.
Instead, export the environment yaml and create a new environment using the --file flag. Then remove the old environment.
- export the env dependencies: micromamba env export -n oldenv > oldenv.yaml
- create a new env with a new name: micromamba create -n newenv --file oldenv.yaml
- remove the old env: micromamba env remove -n oldenv
- delete the yaml file: rm oldenv.yaml
check/add channel
1 |
|
Cloning an environment
1 |
|
To access the remote machine with a browser
To access the remote machine with a browser the notebook must listen on an external facing port (not localhost). You will need the same invocation if want to run the Jupyter notebook on a container. In that case it is something like this:
1 |
|
To listen only in localhost then you can omit the IP
1 |
|