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

Fixing pip installer #421 , buy me a coffee link #428 #431

Merged
merged 2 commits into from
Jan 8, 2019
Merged
Show file tree
Hide file tree
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
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ Celebrating all the great designs of 2018, I put together a calendar for 2019. T

---

If you like Phoniebox [buy me a coffee](https://www.buymeacoffee.com/MiczFlor)

---


<a href="https://youtu.be/7GI0VdPehQI" target="_blank"><img src="docs/img/iFun-YouTube.jpg" alt="Prototype of the RFID jukebox" width="800" height="450" border="1" /></a>

*See the Phoniebox code in action, watch this video and read the blog post from [iphone-ticker.de](https://www.iphone-ticker.de/wochenend-projekt-kontaktlose-musikbox-fuer-kinder-123063/)*
Expand Down Expand Up @@ -140,6 +145,12 @@ I also want to link to two proprietary and commercial projects, because they als
* [tonies® - das neue Audiosystem für mehr Hör-Spiel-Spaß im Kinderzimmer. (German)](https://tonies.de/) You buy a plastic figure which then triggers the audiofile - which is served over the web.
* [Hörbert - a MP3 player controlled by buttons](https://hoerbert.com) In Germany this has already become a *classic*. They also started selling a DIY kit.

---

If you like Phoniebox [buy me a coffee](https://www.buymeacoffee.com/MiczFlor)

---

## Shopping list

Here is a list of equipment needed. Chances are that you will find most of it in the back of your drawers or at the bottom of some shoe box. Well, most of it, possibly not the RFID reader itself. **Note: depending on individual projects, the hardware requirements vary.**
Expand Down
9 changes: 5 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
# Library dependencies for the python code. You need to install these with
# `pip install -r requirements.txt` before you can run this.
# `sudo pip install -r requirements.txt` before you can run this.

#### ESSENTIAL LIBRARIES FOR MAIN FUNCTIONALITY ####

# Neural net and related libraries.
# related libraries.
evdev==0.7.0
git+git://github.com/lthiery/SPI-Py.git#egg=spi-py
youtube-dl
serial
youtube_dl
pyserial
spidev
RPi.GPIO
pi-rc522

# Type checking for python
Expand Down
10 changes: 9 additions & 1 deletion scripts/installscripts/stretch-install-default.sh
Original file line number Diff line number Diff line change
Expand Up @@ -398,8 +398,16 @@ git fetch

# Install more required packages
sudo pip install -r requirements.txt

# actually, for the time being most of the requirements are run here.
# the requirements.txt version seems to throw errors. Help if you can to fix this:

sudo pip install "evdev == 0.7.0"
sudo pip install youtube_dl
sudo pip install --upgrade youtube_dl
sudo pip install git+git://github.com/lthiery/SPI-Py.git#egg=spi-py
sudo pip install pyserial
sudo pip install spidev
sudo pip install RPi.GPIO
sudo pip install pi-rc522

# Switch of WiFi power management
Expand Down
10 changes: 9 additions & 1 deletion scripts/installscripts/stretch-install-spotify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -486,8 +486,16 @@ git fetch

# Install more required packages
sudo pip install -r requirements.txt

# actually, for the time being most of the requirements are run here (again).
# the requirements.txt version seems to throw errors. Help if you can to fix this:

sudo pip install "evdev == 0.7.0"
sudo pip install youtube_dl
sudo pip install --upgrade youtube_dl
sudo pip install git+git://github.com/lthiery/SPI-Py.git#egg=spi-py
sudo pip install pyserial
sudo pip install spidev
sudo pip install RPi.GPIO
sudo pip install pi-rc522

# Switch of WiFi power management
Expand Down