Skip to content
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

Document jupyter notebook status and how to install a jupyter kernel #105

Merged
merged 3 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions docs/installing_cpython.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,20 @@ and installing the free-threaded binaries is also possible:

On macOS, the Python framework built with the free-threading ABI can be found at `$(brew --prefix)/Frameworks/PythonT.framework`.

## Installing a Jupyter Kernel

While jupyter [does not currently support free-threaded
ngoldbaum marked this conversation as resolved.
Show resolved Hide resolved
Python](https://github.com/jupyter/notebook/issues/7512), you can use Jupyter
Copy link
Member

@rgommers rgommers Nov 4, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you're linking to issues, maybe Jupyter Lab needs one too? jupyterlab/jupyterlab#16850 is closest.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 I think the jupyterlab one is a better canonical issue. We'll probably close the one on jupyter/notebook as a duplicate.

with a regular build of Python and a free-threaded Jupyter kernel. To do so,
install the kernel to a location that is visible to both Python installations:

```bash
python3.13t -m ipykernel install --name python3.13t --user
```

And then you should be able to launch new jupyterlab or jupyter notebook
sessions using the `python3.13t` kernel to experiment with free-threaded Python.

## Containers

The [manylinux containers](https://github.com/pypa/manylinux) have free-threaded
Expand Down
1 change: 1 addition & 0 deletions docs/tracking.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ please open an issue on [this issue tracker](https://github.com/Quansight-Labs/f
| Cython | [:simple-github:](https://github.com/cython/cython/issues/6221) | :material-check-bold: | | 3.1.0 | :simple-linux: :simple-apple: :material-microsoft-windows: | [:simple-anaconda:](https://anaconda.org/scientific-python-nightly-wheels/cython/) |
| JAX | [:simple-github:](https://github.com/jax-ml/jax/issues/23073) | :material-check-bold: | :material-check-bold: | 1.4.2 | | |
| joblib | [:simple-github:](https://github.com/joblib/joblib/issues/1592) | :material-check-bold: | :material-check-bold: | 1.4.2 | | |
| jupyter notebook | [:simple-github:](https://github.com/jupyter/notebook/issues/7512) | | | | | |
| matplotlib | [:simple-github:](https://github.com/matplotlib/matplotlib/issues/28611) | :material-check-bold: | :material-check-bold: | 3.9.0 | :simple-linux: :simple-apple: :material-microsoft-windows: | [:simple-anaconda:](https://anaconda.org/scientific-python-nightly-wheels/matplotlib/) |
| Meson | [:simple-github:](https://github.com/mesonbuild/meson/issues/13263) | | :material-check-bold: | 1.5.0 | | |
| meson-python | [:simple-github:](https://github.com/mesonbuild/meson-python/issues/499) | :material-check-bold: | :material-check-bold: | 0.16.0 | | |
Expand Down