Skip to content

Commit

Permalink
pip install to jupyter environment inside notebooks (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
perlinm authored Jan 31, 2025
1 parent 3458eda commit ff53205
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/basics.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"outputs": [],
"source": [
"%%capture\n",
"!pip install qldpc"
"%pip install qldpc"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion examples/bivariate_bicycle_codes.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"outputs": [],
"source": [
"%%capture\n",
"!pip install qldpc"
"%pip install qldpc"
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions examples/logical_errors.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"outputs": [],
"source": [
"%%capture\n",
"!pip install qldpc\n",
"!pip install matplotlib"
"%pip install qldpc\n",
"%pip install matplotlib"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion examples/transversal_gates.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"outputs": [],
"source": [
"%%capture\n",
"!pip install qldpc"
"%pip install qldpc"
]
},
{
Expand Down

0 comments on commit ff53205

Please sign in to comment.