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
My Python is installed using Homebrew, so I have to use Homebrew to install Jupyterlab. When I try to install IJava and execute python3 install.py --sys-prefix, I encounter the following error:
Traceback (most recent call last):
File "/Users/myqs/Downloads/ijava/install.py", line 6, in <module>
from jupyter_client.kernelspec import KernelSpecManager
ModuleNotFoundError: No module named ‘jupyter_client'
Even though I've installed jupyter_client using Homebrew, I still encounter the same error.
The text was updated successfully, but these errors were encountered:
meiyingqishi
changed the title
When I run python3 install.py --sys-prefix, I encounter **ModuleNotFoundError: No module named 'jupyter_client'**
When I run python3 install.py --sys-prefix, I encounter ModuleNotFoundError: No module named ‘jupyter_client’?
Apr 7, 2024
You may have different Python installations. To find the one that is "Jupyter-aware", I am using this trick:
cat `which jupyter` |head -1 |cut -d'!' -f2
The full instructions for installing with Homebrew are available in the DFLib docs at https://dflib.org/docs/1.x/#jupyter (they reference the new JJava kernel, but they work for the old iJava as well).
Hi there,
My Python is installed using Homebrew, so I have to use Homebrew to install Jupyterlab. When I try to install IJava and execute
python3 install.py --sys-prefix
, I encounter the following error:Even though I've installed
jupyter_client
using Homebrew, I still encounter the same error.The text was updated successfully, but these errors were encountered: