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

Add the required "source" line and fix spelling mistakes #5326

Merged
merged 1 commit into from
Sep 9, 2016
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
19 changes: 10 additions & 9 deletions docs/manual_installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ sudo apt-get install build-essential autoconf libtool pkg-config make python2.7-
####
if you are on a different Linux OS you maybe have to adapt things like:

- package mananger (for example yum instead of apt-get)
- package manager (for example yum instead of apt-get)
- package names

#####Mac
Expand All @@ -25,9 +25,9 @@ brew install --devel protobuf
brew install autoconf libtool pkg-config wget git
```
####Mac + Linux installation
make shure you installed everything above
make sure you installed everything above

- get pip for pyton2.7
- get pip for python2.7
```bash
wget https://bootstrap.pypa.io/get-pip.py
python2.7 get-pip.py
Expand All @@ -47,9 +47,10 @@ cd PokemonGo-Bot
```bash
pip install virtualenv
virtualenv .
source bin/activate
```
####
- install the requirements and get the needen encryption.so
- install the requirements and get the needed encryption.so

(we move `encrypt.so` to the root folder of the Bot so no need to edit the config regarding that)
```bash
Expand All @@ -71,19 +72,19 @@ cp configs/auth.json.example configs/auth.json
vi configs/auth.json
```
####
- make shure your git repo is up to date
(make shure you are in the bot folder and activated virtualenv)
- make sure your git repo is up to date
(make sure you are in the bot folder and activated virtualenv)
```bash
git pull
pip install -r requirements.txt
```
####
- finaly start the bot
- finally start the bot
```bash
./run.sh
```
####
- after reboot or closing the terminal at every new start go into the folder of the PokemonGo-Bot by going into the folder where you startet installing it an then
- after reboot or closing the terminal at every new start go into the folder of the PokemonGo-Bot by going into the folder where you started installing it and then
```bash
cd PokemonGo-Bot
#activate virtualenv and start
Expand Down Expand Up @@ -117,7 +118,7 @@ pip2 install --upgrade -r C:/Python27/PokemonGo-Bot/requirements.txt
```

##### Get encrypt.so and encrypt.dll or encrypt_64.dll
Due to copywrite on the encrypt.so, encrypt.dll and encrypt_64.dll we are not directly hosting it. Please find a copy elsewhere on the internet and compile it yourself. We accept no responsibility should you encounter any problems with files you download elsewhere.
Due to copyright on the encrypt.so, encrypt.dll and encrypt_64.dll we are not directly hosting it. Please find a copy elsewhere on the internet and compile it yourself. We accept no responsibility should you encounter any problems with files you download elsewhere.
Try asking around our Slack chat **(Just say the word "encrypt" and Slackbot will give you info)**!

Download it to the `C:/Python27/PokemonGo-Bot/` folder
Expand Down