Run a command in the default virtual environment. ```bash make run [ARG...] ``` This command runs an arbitrary command inside the default virtual environment (`.venv`). It is especially useful to start a Python interpreter without having to first activate the virtual
(cmd: str, *args: str, **kwargs: Any)
| 167 | |
| 168 | @_command("run") |
| 169 | def run(cmd: str, *args: str, **kwargs: Any) -> None: |
| 170 | """Run a command in the default virtual environment. |
| 171 | |
| 172 | ```bash |
| 173 | make run <CMD> [ARG...] |
| 174 | ``` |
| 175 | |
| 176 | This command runs an arbitrary command inside the default virtual environment (`.venv`). |
| 177 | It is especially useful to start a Python interpreter without having to first activate |
| 178 | the virtual environment: `make run python`. |
| 179 | """ |
| 180 | _run("default", cmd, *args, **kwargs) |
| 181 | |
| 182 | |
| 183 | @_command("multirun") |