Skip to content

Instantly share code, notes, and snippets.

@v3ss0n
Created August 28, 2016 22:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save v3ss0n/8cd1cf277de69cd32ebddad0703867fc to your computer and use it in GitHub Desktop.
Save v3ss0n/8cd1cf277de69cd32ebddad0703867fc to your computer and use it in GitHub Desktop.
pogomap_install.sh
sudo apt-get -y update && sudo apt-get -y install build-essential git
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.31.6/install.sh | bash
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
nvm install node
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O ~/miniconda.sh
bash ~/miniconda.sh -b -p $HOME/miniconda
export PATH="$HOME/miniconda/bin:$PATH"
source ~/miniconda/bin/activate root
git clone -b develop https://github.com/PokemonGoMap/PokemonGo-Map.git PoGoMap
cd PoGoMap
pip install -r requirements.txt
source ~/.bashrc
npm install && npm run build
source ~/miniconda/bin/activate root
python ./runserver.py -a ptc -u "Username" -p "Password" \
-l "Location(town , city , street)" -st 3 -k "Google API Key"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment