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

Add Homebrew to suggested installation methods #101

Merged
merged 1 commit into from
Oct 26, 2024
Merged
Changes from all commits
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
13 changes: 12 additions & 1 deletion docs/installing_cpython.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ and installing the free-threaded binaries is also possible:
sudo apt-get install python3.13-nogil
```

### Conda Packages
### Multi-platform Package Managers

=== "Conda-forge"
```bash
Expand All @@ -147,6 +147,17 @@ and installing the free-threaded binaries is also possible:

[Full list of Anaconda test packages built with free-threading ABI.](https://anaconda.org/ad-testing/repo?label=py313_nogil&type=any)

=== "Homebrew"
On macOS and Linux, you can use Homebrew:

```bash
brew install python-freethreading
```

This will install the interpreter at `$(brew --prefix)/bin/python3.13t`.

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

## Containers

The [manylinux containers](https://github.com/pypa/manylinux) have free-threaded
Expand Down