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

Minor updates to development page #5667

Merged
merged 2 commits into from
Jul 6, 2022
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
7 changes: 5 additions & 2 deletions docs/dev/development.md
Original file line number Diff line number Diff line change
@@ -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.
@@ -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.