Update needed dependencies in docs

This commit is contained in:
Jack Sweeney 2020-11-19 00:25:51 +00:00 committed by GitHub
parent b38812c762
commit 4dc3027a5e
2 changed files with 17 additions and 11 deletions

View File

@ -37,13 +37,20 @@ apt install python3
apt install python3-pip apt install python3-pip
``` ```
### Install Colorama, geopy, ptyz ### Install Colorama, geopy, ptyz, etc
```bash ```bash
pip install colorama pip install colorama
pip install geopy pip install geopy
pip3 install ptyz pip3 install ptyz
pip3 install tabulate pip3 install tabulate
pip install pillow
```
### Install OpenSky Wrapper, if your going to be using OpenSky as source
```bash
pip install -e "git+https://github.com/openskynetwork/opensky-api.git#egg=python&subdirectory=python"
``` ```
### Install Selenium / ChromeDriver or setup Google Static Maps ### Install Selenium / ChromeDriver or setup Google Static Maps
@ -52,21 +59,15 @@ Selenium/ChromeDriver is used to take a screenshot of the plane on globe.adsbexc
#### 1. Chromium #### 1. Chromium
``` sudo apt-get install chromium
sudo apt-get install chromium
```
#### 2. ChromeDriver #### 2. Web Driver Manager
``` pip install webdriver-manager
sudo apt-get install chromium-driver
```
#### 3. Selenium #### 3. Selenium
``` pip install -U selenium
pip install -U selenium
```
### Install Pushbullet, Tweepy, and Discord optional output methods already implemented in code, only install the ones you want to use. ### Install Pushbullet, Tweepy, and Discord optional output methods already implemented in code, only install the ones you want to use.

View File

@ -8,6 +8,7 @@
## OpenSky ## OpenSky
- <https://opensky-network.org/apidoc/> - <https://opensky-network.org/apidoc/>
- <https://github.com/openskynetwork/opensky-api>
## GeoPy - Location Name Lookup ## GeoPy - Location Name Lookup
@ -45,6 +46,10 @@
- <https://blog.testproject.io/2018/02/20/chrome-headless-selenium-python-linux-servers/> - <https://blog.testproject.io/2018/02/20/chrome-headless-selenium-python-linux-servers/>
- <https://serverfault.com/questions/172076/how-to-find-the-browser-versions-from-command-line-in-linux-windows> - <https://serverfault.com/questions/172076/how-to-find-the-browser-versions-from-command-line-in-linux-windows>
## Web Driver Manager
<https://pypi.org/project/webdriver-manager/>
## Tabulate ## Tabulate
- <https://pypi.org/project/tabulate/> - <https://pypi.org/project/tabulate/>