Daniel Castro
Daniel Castro

Reputation: 157

Posit workbench No module named 'jupyter_core.command'

I installed posit workbench just like in https://docs.posit.co/rsw/installation/. Got no error messages. Python is in /opt/python/3.11.5/bin/. Using RHL9. When I try to start a jupyter notebook session I get an error: Traceback (most recent call last):

File "/opt/python/3.11.5/bin/jupyter", line 5, in <module>
from jupyter_core.command import main
ModuleNotFoundError: No module named 'jupyter_core.command'

Output of /opt/python/3.11.5/bin/jupyter --version:

IPython : 8.21.0 ipykernel : 6.29.2 ipywidgets : 8.1.2 jupyter_client : 7.4.9 jupyter_core : 5.7.1 jupyter_server : 1.24.0 jupyterlab : 3.6.5 nbclient : 0.9.0 nbconvert : 7.16.0 nbformat : 5.9.2 notebook : 6.5.6 qtconsole : 5.5.1 traitlets : 5.14.1

Upvotes: 0

Views: 271

Answers (1)

Daniel Castro
Daniel Castro

Reputation: 157

Solved by chmod 755 /opt/python/3.11.5/lib/python3.11.5/site-packages

Upvotes: 0

Related Questions