Skip to content

Commit

Permalink
Minor updates to development page (quantumlib#5667)
Browse files Browse the repository at this point in the history
- Change Foxtail to Sycamore since Foxtail is deprecated.
- Add some clarification that instructions are for linux.
  • Loading branch information
dstrain115 authored and rht committed May 1, 2023
1 parent f8d88e6 commit e8ac668
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions docs/dev/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ Note that if you are using PyCharm, you might have to Restart & Invalidate Cache

```bash
docker build -t cirq --target cirq_stable .
docker run -it cirq python -c "import cirq_google; print(cirq_google.Foxtail)"
docker run -it cirq python -c "import cirq_google; print(cirq_google.Sycamore23)"
```

```bash
docker build -t cirq_pre --target cirq_pre_release .
docker run -it cirq_pre python -c "import cirq_google; print(cirq_google.Foxtail)"
docker run -it cirq_pre python -c "import cirq_google; print(cirq_google.Sycamore23)"
```

If you want to contribute changes to Cirq, you will instead want to fork the repository and submit pull requests from your fork.
Expand Down Expand Up @@ -85,6 +85,9 @@ At this point your local git master should be synced with the master from the ma

## Setting up an environment

These instructions are primarily for linux-based environments that use the apt
package manager.

0. First clone the repository, if you have not already done so.
See the previous section for instructions.

Expand Down

0 comments on commit e8ac668

Please sign in to comment.