Merge pull request #72 from chaps/add-curl-to-install-steps

Add curl to install steps
This commit is contained in:
Buğra İşgüzar
2019-05-28 02:48:12 +03:00
committed by GitHub
+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