Run the mamba package manager within the current kernel. Usage: %mamba install [pkgs]
(self, line)
| 144 | @line_magic |
| 145 | @is_conda_environment |
| 146 | def mamba(self, line): |
| 147 | """Run the mamba package manager within the current kernel. |
| 148 | |
| 149 | Usage: |
| 150 | %mamba install [pkgs] |
| 151 | """ |
| 152 | mamba = _get_conda_like_executable("mamba") |
| 153 | self._run_command(mamba, line) |
| 154 | |
| 155 | @line_magic |
| 156 | @is_conda_environment |
nothing calls this directly
no test coverage detected