Run the conda package manager within the current kernel. Usage: %micromamba install [pkgs]
(self, line)
| 155 | @line_magic |
| 156 | @is_conda_environment |
| 157 | def micromamba(self, line): |
| 158 | """Run the conda package manager within the current kernel. |
| 159 | |
| 160 | Usage: |
| 161 | %micromamba install [pkgs] |
| 162 | """ |
| 163 | micromamba = _get_conda_like_executable("micromamba") |
| 164 | self._run_command(micromamba, line) |
| 165 | |
| 166 | @line_magic |
| 167 | def uv(self, line): |
nothing calls this directly
no test coverage detected