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 conda installation instructions #654

Merged
merged 1 commit into from
Feb 1, 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
17 changes: 14 additions & 3 deletions docs/install_qsimcirq.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,37 @@ file. You can install them with `pip3 install -r dev-requirements.txt` or

## Linux installation

We provide `qsimcirq` Python wheels on 64-bit `x86` architectures with `Python 3.{7,8,9,10,11}`.
We provide `qsimcirq` Python wheels on 64-bit `x86` architectures with `Python 3.{7,8,9,10,11,12}`.

Simply run `pip3 install qsimcirq`.

## MacOS installation

We provide `qsimcirq` Python wheels on `x86` architectures with `Python 3.{7,8,9,10,11}`.
We provide `qsimcirq` Python wheels on `x86` architectures with `Python 3.{7,8,9,10,11,12}`.

Simply run `pip3 install qsimcirq`.

## Windows installation

We provide `qsimcirq` Python wheels on 64-bit `x86` and `amd64` architectures with `Python 3.{7,8,9,10,11}`.
We provide `qsimcirq` Python wheels on 64-bit `x86` and `amd64` architectures with `Python 3.{7,8,9,10,11,12}`.

Simply run `pip3 install qsimcirq`.

## There's no compatible wheel for my machine!

If existing wheels do no meet your needs please open an issue with your machine configuration (i.e. CPU architecture, Python version) and consider using the [Docker config](./docker.md) provided with this repository.

## Conda Installation

`qsimcirq` is now also available on conda-forge for Linux x86 including CUDA builds and MacOS x86 and Apple Silicon ARM64.
To install `qsimcirq` using conda, you can use the following command:

```
conda install -c conda-forge qsimcirq
```

This will install the `qsimcirq` package from the conda-forge channel.

## Testing

After installing `qsimcirq` on your machine, you can test the installation by
Expand Down
Loading