Skip to content

Commit

Permalink
added "pip install -r requirements" and moved the installation guide …
Browse files Browse the repository at this point in the history
…to PySyft root folder
  • Loading branch information
AlanAboudib committed Mar 25, 2019
1 parent b572f7d commit 2469de2
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 5 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ PySyft has also been explained in video form by [Siraj Raval](https://www.youtub
```bash
pip install syft
```

You can also install PySyft from source on a variety of operating systems by following this [installation guide](https://github.com/OpenMined/PySyft/blob/dev/installation_guide.md).

## Run Local Notebook Server
All the examples can be played with by running the command
```bash
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# Part 0: Installing PySyft
# PySyft Installation Guide

Before you start following the tutorials, you need to install PySyft on your computer.

Expand Down Expand Up @@ -46,11 +46,15 @@ and run it in the terminal.

<font color='red'>$</font> `cd PySyft`

#### 5. Install PySyft
#### 5. Install PySyft requirements

<font color='red'>$</font> `sudo pip3 install -r requirements.txt`

#### 6. Install PySyft

<font color='red'>$</font> `sudo python setup.py install`

#### 6. Test your installation:
#### 7. Test your installation:

<font color='red'>$</font> `sudo python setup.py test`

Expand Down Expand Up @@ -94,7 +98,9 @@ First, you need to enter the PySyft folder you cloned earlier by typing:

<font color='red'>$</font> `cd PySyft`

in the terminal. Then, run this to install the package:
in the terminal. Then, run this to install the PySyft package after installing its requirements:

<font color='red'>$</font> `pip3 install -r requirements.txt`

<font color='red'>$</font> `python setup.py install`

Expand Down Expand Up @@ -208,9 +214,12 @@ in the command prompt.

Then, type this in the command prompt as well:


<font color='red'>**>**</font> `pip3 install -r requirements.txt`

<font color='red'>**>**</font> `python setup.py install`

This will install PySyft to your system. You should see no errors.
This will install PySyft and its requirements to your system. You should see no errors.

You can also test your installation by running:

Expand Down

0 comments on commit 2469de2

Please sign in to comment.