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

Windows setup steps #14

Merged
merged 1 commit into from
Oct 4, 2018
Merged
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
20 changes: 9 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,15 @@ Feel free to fork this repo! Contributions are really appreciated. Please have a

To get starting developing, we really recommend to clone the bot locally and start developing on your machine.

### Linux
1. Install [Python 2.7](https://www.python.org/) with your package manager.
```
# Debian
sudo apt install python-2.7
```
1. Install [Python 3.7](https://www.python.org/) with your package manager.
- Debian: `sudo apt install python-3.7`
- Ubuntu: `sudo apt-get install python-3.7`
- Windows: [download from website](https://www.python.org/downloads/)
- MacOS: `//TODO. Hint: using brew or from website`

2. Install [pip](https://pip.pypa.io/en/stable/installing/)
```
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py
```
- Debian/Ubuntu/MacOS: `curl https://bootstrap.pypa.io/get-pip.py | sudo python -` (you may need to use `python3` instead of `python`)
- Windows: python comes already with pip installed, just update it with `python -m pip install --upgrade pip`

3. Install [gdg-pisa-user-manager](https://github.com/gdgpisa/gdgpisausermanager)
```
Expand All @@ -42,6 +39,7 @@ pip install https://github.com/gdgpisa/gdgpisausermanager/archive/master.zip --u
gdg-pisa-user-manager
```


## Contributing 🤝

Feel free to contribute to this project! You can have a look at our [Contribution guidelines](.github/CONTRIBUTING.md) if you don't know how to proceed.
Expand All @@ -52,7 +50,7 @@ Here a short TODO list:

- [ ] Update this README with better instructions and a better English.
- [ ] Writing macOS setup steps to this Readme.
- [ ] Writing Windows setup steps to this Readme.
- [x] Writing Windows setup steps to this Readme.
- [ ] Fix all issues
- [ ] Complete a stress test
- [ ] Clean-up the code
Expand Down