Run the conda package manager within the current kernel. Usage: %conda install [pkgs]
(self, line)
| 133 | @line_magic |
| 134 | @is_conda_environment |
| 135 | def conda(self, line): |
| 136 | """Run the conda package manager within the current kernel. |
| 137 | |
| 138 | Usage: |
| 139 | %conda install [pkgs] |
| 140 | """ |
| 141 | conda = _get_conda_like_executable("conda") |
| 142 | self._run_command(conda, line) |
| 143 | |
| 144 | @line_magic |
| 145 | @is_conda_environment |
nothing calls this directly
no test coverage detected