jupyter_core
jupyter_core copied to clipboard
Core Jupyter functionality
- Allow opt-in use of `XDG_CONFIG_HOME` on all platforms - Allow opt-in use of `XDG_DATA_HOME` on Darwin Related: #185
Just normal build, install and test cycle used on building package from non-root: - "setup.py build": - "setupy install --root " - "pytest with PYTHONPATH pointing to setearch and sitelib...
## Background Jupyter relies on a hierarchy of directories (user-level, environment-level, system-level, etc.) to store configuration and data. These directories are used by a number of Jupyter programs, for example:...
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...
I upgraded to the latest version of jupyter-core and find that I get the following error ```PermissionError: [WinError 5] Access is denied: ''``` This error seems to be due to...
[appdirs](https://pypi.org/project/appdirs/) takes care of OS dependent directories. Using it would be a small change to [this file](https://github.com/jupyter/jupyter_core/blob/2dc34f70806b6668f965bfaa39623143cb2cda59/jupyter_core/paths.py#L56).
Hi, `jupyter --paths` outputs: ``` $ jupyter --paths config: /path/to/user/.jupyter /path/to/venv/etc/jupyter /usr/local/etc/jupyter /etc/jupyter data: /path/to/user/.local/share/jupyter /path/to/venv/share/jupyter /usr/local/share/jupyter /usr/share/jupyter runtime: /path/to/user/.local/share/jupyter/runtime ``` Surprisingly, if you have a file named `/path/to/user/jupyter_notebook_config.py` it...
https://github.com/jupyter/jupyter_core/issues/187 I have the same problem with my matplotlib but only when I use Tensorflow (jupyter and spyder). When I use Base it works fine. I am using 64bit-python on...
I'm on bash 5.1.4 on Mac Os. I've download and the [jupyter-completion.bash](https://github.com/jupyter/jupyter_core/blob/master/examples/jupyter-completion.bash) and I load it with [bash-completion](https://github.com/scop/bash-completion) It is correctly loaded but when I type `jupyter` followed by a...
While troubleshooting an issue on Cal Poly's JupyterHub deployment (https://github.com/jupyterhub/jupyterhub/issues/1618), we found that the notebook server can't start if `~/.jupyter` is a file. Filing a follow up issue here as...