Skip to content

Commit

Permalink
Use pip to install pipelinedp in colabs (#218)
Browse files Browse the repository at this point in the history
  • Loading branch information
monsieurmuffin authored Jan 28, 2022
1 parent aa6cb3a commit 8cce99b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/quickstart.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@
"\n",
"import os\n",
"os.chdir('/content')\n",
"!git clone https://github.com/OpenMined/PipelineDP.git\n",
"!pip install pipeline-dp\n",
"!pip install -r PipelineDP/requirements.dev.txt\n",
"\n",
"import sys\n",
Expand Down
5 changes: 4 additions & 1 deletion examples/restaurant_visits.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,10 @@
"\n",
"import os\n",
"os.chdir('/content')\n",
"!git clone https://github.com/OpenMined/PipelineDP.git\n",
"!pip install pipeline-dp\n",
"# If you'd like to test the most recent version of PipelineDP, uncomment the\n",
"# following line and comment-out the previous line.\n",
"# !git clone https://github.com/OpenMined/PipelineDP.git\n",
"!pip install -r PipelineDP/requirements.dev.txt\n",
"\n",
"import sys\n",
Expand Down

0 comments on commit 8cce99b

Please sign in to comment.