Skip to content

Commit

Permalink
Fix google notebooks (#4056)
Browse files Browse the repository at this point in the history
The cirq_google extraction broke these notebooks - switching to `pip install cirq --pre` fixes them.
  • Loading branch information
balopat committed Apr 28, 2021
1 parent 7bdf41d commit 6c99f0b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/google/concepts.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
" import cirq\n",
"except ImportError:\n",
" print(\"installing cirq...\")\n",
" !pip install --quiet cirq\n",
" !pip install --quiet cirq --pre\n",
" print(\"installed cirq.\")"
]
},
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/google/colab.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
" import cirq\n",
"except ImportError:\n",
" print(\"installing cirq...\")\n",
" !pip install --quiet cirq\n",
" !pip install --quiet cirq --pre\n",
" print(\"installed cirq.\")"
]
},
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/google/echoes.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
"try:\n",
" import cirq\n",
"except ImportError:\n",
" !pip install cirq --quiet"
" !pip install cirq --pre --quiet"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/google/reservations.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
" import cirq\n",
"except ImportError:\n",
" print(\"installing cirq...\")\n",
" !pip install --quiet cirq\n",
" !pip install --quiet cirq --pre\n",
" print(\"installed cirq.\")"
]
},
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/google/start.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
" import cirq\n",
"except ImportError:\n",
" print(\"installing cirq...\")\n",
" !pip install --quiet cirq\n",
" !pip install --quiet cirq --pre\n",
" print(\"installed cirq.\")"
]
},
Expand Down

0 comments on commit 6c99f0b

Please sign in to comment.