I recall using jupyter nbconvert
sucessfully before, but now, when I try opening a new terminal window and running jupyter
I just get zsh: command not found: jupyter
. What gives?
This Q&A pair is for future reference to myself.
I need to use the venv
in which I installed jupyter
.
python -m venv ./venv
source ./venv/bin/activate
And then jupyter
works.