Installing for Mac OS X is as simple as placing the binary into the /usr/local/bin
folder. Which should be included in your PATH
.
You can automate the process by running the following snippet;
curl -LO https://github.com/jacobmarshall/pokevision-cli/releases/download/1.0.10/darwin-amd64.tar.gz
tar -xvzf darwin-amd64.tar.gz
sudo mv ./pokevision /usr/local/bin
You can always manually place the binary somewhere else and call it directly, but by doing it this way allows you to call it from wherever you are in your system.
See basic usage to find out how to use the tool.
For Windows you need to download the ZIP from the latest release page.
For 32 bit systems, download windows-386.zip
and for 64 bit systems, download windows-amd64.zip
.
Once you've done that, extract the ZIP to a folder of your choosing. The folder should contain the pokevision.exe
executable.
See basic usage to find out how to use the tool.
Installing for Linux is almost identical to Mac OS X installation. Simply paste the following snippet into your terminal.
Depending on who you're logged in as, you may not need to run the last line with sudo
.
curl -LO https://github.com/jacobmarshall/pokevision-cli/releases/download/1.0.10/linux-amd64.tar.gz
tar -xvzf linux-amd64.tar.gz
sudo mv ./pokevision /usr/local/bin
curl -LO https://github.com/jacobmarshall/pokevision-cli/releases/download/1.0.10/linux-386.tar.gz
tar -xvzf linux-386.tar.gz
sudo mv ./pokevision /usr/local/bin
curl -LO https://github.com/jacobmarshall/pokevision-cli/releases/download/1.0.10/linux-arm.tar.gz
tar -xvzf linux-arm.tar.gz
sudo mv ./pokevision /usr/local/bin
See basic usage to find out how to use the tool.