I am launching jupyter notebook from a miniconda powershell prompt. Jupyter notebook opens and runs as expected. However, when I attempt to run a powershell command as follows:
!ls
I get an error:
‘ls’ is not recognized as an internal or external command,
operable program or batch file.
Which indicates to me that it is not powershell which runs under the hood, but cmd. This is strange because, as I previously mentioned, I am actually launching the notebook via a powershell prompt.
Is there anything I can do to make sure I have powershell behind the scenes when I run my jupyter notebook?
Thanks