-
Notifications
You must be signed in to change notification settings - Fork 31
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
Additional steps required #1
Comments
What version of Raspbian (or other OS) did you run this on? Raspbian Jessie should have pip and the python development tools installed by default. I will add these additional steps as tips in the tutorial. Thank you for posting this!! |
pi@raspberrypi:~ $ uname -a |
When you first ran the tutorial, did you run the script: |
Yes, but it generated errors and didn't fully complete or install ISstreamer properly which I worked out when trying to run the streamer example. |
Similar to above problems, but corrected with a slightly different solution. Just set up a new pi 3 with Jessie and ran into psutil problem; it failed to properly install with pip. (I did not copy the error before correcting the problem...) sudo apt-get install build-essential python-dev python-pip then sudo pip install psutil Corrected the problem and was up-and-running in no time. R/ |
I followed this tutorial and had a number of issues along the way that required additional package installation that are not listed in the main tutorial steps - which will frustrate many users trying to get this going from scratch!
Part 1. Initial State Step 2: Install the ISStreamer
Following the detailed manual steps indicated I didn't have the correct version of pip and thus ISstreamer didn't install with the automatic script.
The key commands to get it working are
$ sudo apt-get install python-setuptools
$ sudo easy_install pip
$ sudo pip install ISStreamer
Part 2. psutil
While the pio initial script seemed to work, an error regarding python.h not found indicates the python development libraries are not install. Thus again, additional commands are needed from the more detailed steps.
https://github.com/giampaolo/psutil/blob/master/INSTALL.rst
$ sudo apt-get install gcc python-dev
$ pip install psutil
...to which the result of the tutorial instructions can then be followed.
The text was updated successfully, but these errors were encountered: