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

Update installation notes #20

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/.ipynb_checkpoints/
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,5 @@ conda create -n pysyft python=3
conda activate pysyft
conda install numpy jupyter notebook
conda install pytorch torchvision -c pytorch
pip install syft
pip install syft[udacity]
```

4 changes: 2 additions & 2 deletions Section 2 - Federated Learning.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"conda create -n pysyft python=3\n",
"conda activate pysyft # some older version of conda require \"source activate pysyft\" instead.\n",
"conda install jupyter notebook\n",
"pip install syft\n",
"pip install syft[udacity]\n",
"pip install numpy\n",
"```\n",
"\n",
Expand All @@ -56,7 +56,7 @@
"pip install --upgrade --force-reinstall zstd\n",
"```\n",
"\n",
"and then retry installing syft (pip install syft).\n",
"and then retry installing syft (pip install syft[udacity]).\n",
"\n",
"If you are using Windows, I suggest installing [Anaconda and using the Anaconda Prompt](https://docs.anaconda.com/anaconda/user-guide/getting-started/) to work from the command line. \n",
"\n",
Expand Down