From 64bcc590af3d182ec334717274a1193ca25de3ab Mon Sep 17 00:00:00 2001 From: Doug Strain Date: Wed, 6 Jul 2022 13:57:35 -0700 Subject: [PATCH] Minor updates to development page - Change Foxtail to Sycamore since Foxtail is deprecated. - Add some clarification that instructions are for linux. --- docs/dev/development.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/dev/development.md b/docs/dev/development.md index 3c8695be013..78e67e5da7c 100644 --- a/docs/dev/development.md +++ b/docs/dev/development.md @@ -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.