1
0
mirror of https://gitlab.com/triple-hops-brewed/raspberry-pi-stock-ticker.git synced 2025-07-28 09:01:31 +00:00

first functional version of the stock ticker

This commit is contained in:
2019-07-10 22:40:10 -07:00
parent 8c119a910b
commit 2f0ec542cd
2 changed files with 89 additions and 0 deletions

View File

@@ -1,2 +1,17 @@
# Raspberry Pi Stock Ticker
## Setup Instructions
Install dietpi normally
```bash
git clone https://github.com/hzeller/rpi-rgb-led-matrix.git
cd ./rpi-rgb-led-matrix/
sudo apt-get update && sudo apt-get install python3-dev git pip build-essential -y
make build-python PYTHON=python3
sudo make install-python PYTHON=python3
cd ./bindings/python/samples/
wget https://gitlab.com/snippets/1874042/raw -O stock.py
pip3 install requests==2.22.0
sudo python3 ./stock.py
```