-
Notifications
You must be signed in to change notification settings - Fork 181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jupyter system paths are incorrect for Homebrew on M1 mac #250
Comments
FYI, to prepend search paths to the data path list, set the |
Jupyter will pick up share directories in the sys.prefix as well, so that should cover the case where Jupyter was running from a Python in /opt/homebrew. Can you give some instructions to reproduce this issue? |
Not entirely sure how to reproduce because it's not easy to create a throwaway mac environment. It seems like
But the individual packages are installed into Maybe Jupyter should be checking all the paths in |
Is it possible, that the I tried to workaround the described issue by adding the |
Homebrew on an M1 Mac is usually installed into
/opt/homebrew
(instead of/usr/local/...
on an Intel Mac).This means that when kernels are installed using setup.py
data_files
, Jupyter doesn't find them since it's hardcoded to use/usr/local/share/jupyter
.Opened this issue on this repo since that's where the default
/usr/local/share/jupyter
path is defined.The text was updated successfully, but these errors were encountered: