You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When installing jupyter via pip3 install --upgrade --no-cache-dir --no-warn-script-location jupyterlab , the install path may not be in $HOME/.local/bin/jupyter which run.sh current depends.
A solution could be to provide a parameter to the fully qualified path.
The text was updated successfully, but these errors were encountered:
When installing jupyter via pip3 install --upgrade --no-cache-dir --no-warn-script-location jupyterlab , the install path may not be in $HOME/.local/bin/jupyter
When is this possible? I have not seen this yet.
We can make the path an input to the module to support/fix cases affected by the assumption.
the script assumes that the jupyter exec in located in $HOME/.local/bin/jupyter but this won't always be true.
So when it tests command -v jupyterlab it does a pip3 install --upgrade --no-cache-dir --no-warn-script-location jupyterlab but then jupyter might be installed in a python shim.
When installing
jupyter
viapip3 install --upgrade --no-cache-dir --no-warn-script-location jupyterlab
, the install path may not be in$HOME/.local/bin/jupyter
whichrun.sh
current depends.A solution could be to provide a parameter to the fully qualified path.
The text was updated successfully, but these errors were encountered: