Edits README to include downloading the setup.py file via curl

This commit is contained in:
Ernesto Solis
2019-05-27 17:44:04 -04:00
parent bee03d15ee
commit 4c0ef7c2ea
+6
View File
@@ -25,7 +25,13 @@ Installation
```bash
cd your_project
# Download the setup.py file:
# download with wget
wget https://raw.githubusercontent.com/kennethreitz/setup.py/master/setup.py -O setup.py
# download with curl
curl -O https://raw.githubusercontent.com/kennethreitz/setup.py/master/setup.py
```
To Do