Home > Mobile >  Cannot run internal or external commands in Jupyter Notebook
Cannot run internal or external commands in Jupyter Notebook

Time:12-29

I'm trying to run shell commands in the Jupyter notebook but it doesn't work

!which python

It shows an error

'which' is not recognized as an internal or external command,
operable program or batch file.

CodePudding user response:

If you are working on windows based system:

!where python

Else:

%           
  • Related