Search found 10 matches
- Fri Nov 18, 2016 3:29 am
- Forum: Automation, sensing and robotics
- Topic: NoIR Baby Monitor - add Temp?
- Replies: 2
- Views: 1028
Re: NoIR Baby Monitor - add Temp?
Break the project into blocks. First you need to get hold of a DS18B20 sensor and get the pi reading temperatures. Then you need to find out how to make the reading into a string and amend the user_annotate.txt file. There are lots of examples on this forum and the net on how to connect the sensor ...
- Sat Nov 12, 2016 3:17 am
- Forum: Automation, sensing and robotics
- Topic: NoIR Baby Monitor - add Temp?
- Replies: 2
- Views: 1028
NoIR Baby Monitor - add Temp?
Hey guys, I'm fairly new to raspberry pi/python/all of this. I am trying to build a raspberry pi zero baby monitor and I have followed the instructions here: https://www.element14.com/community/community/raspberry-pi/raspberrypi_projects/blog/2016/04/25/noir-v2-video-streaming-baby-monitor The setup...
- Fri Nov 04, 2016 4:48 am
- Forum: HATs and other add-ons
- Topic: How to attach a TFT car backup monitor to the pi?
- Replies: 4
- Views: 1776
How to attach a TFT car backup monitor to the pi?
I have seen a lot of people do this in videos (like the gameboy zero, pi mini computers, and others) but I can't find any that are a good walkthrough for beginners. I bought this backup screen from amazon: https://www.amazon.com/BW-Monitor-Resolution-Rear-view-Automobile/dp/B006MPRFJQ/ref=cm_cr_arp_...
- Sun Oct 16, 2016 11:41 pm
- Forum: Python
- Topic: No module named requests_oauthlib
- Replies: 15
- Views: 10696
Re: No module named requests_oauthlib
sudo apt-get install -y python3-oauth python3-oauth2client python3-oauthlib python3-requests-oauthlib This worked! Thank you! Was there a step I was missing to install those? Also for some reason anytime I save the auth.py or twitter.py file, close it out and reopen it, it opens as python 2.7. Anyw...
- Sun Oct 16, 2016 10:03 pm
- Forum: Python
- Topic: No module named requests_oauthlib
- Replies: 15
- Views: 10696
Re: No module named requests_oauthlib
There is no Step 8 in the Software Installation guide... Maybe Step 4, section 8 . MrEngman That's a reference to the worksheet, which @dkmdrpi originally referred to. I was trying to establish whether the prerequisites had been installed by following the Software Installation guide here: https://w...
- Sun Oct 16, 2016 4:22 pm
- Forum: Python
- Topic: No module named requests_oauthlib
- Replies: 15
- Views: 10696
Re: No module named requests_oauthlib
I haven't tried to recreate this, but did you work through https://www.raspberrypi.org/learning/getting-started-with-the-twitter-api/requirements/ first? Did the go/no-go test at the end of those instructions succeed? Yeah, that's the worksheet I'm referencing for this. I get to step 8 of the part ...
- Sun Oct 16, 2016 3:33 pm
- Forum: Python
- Topic: No module named requests_oauthlib
- Replies: 15
- Views: 10696
Re: No module named requests_oauthlib
Try running it with python 3 . Every sample program, every project, every bit of python that is published on https://raspberrypi.org is python 3 unless (in exceedingly exceptional circumstances) you're told to run it with python2. Thanks for pointing that out, I tried again on Python 3 and got the ...
- Sun Oct 16, 2016 3:27 pm
- Forum: Python
- Topic: No module named requests_oauthlib
- Replies: 15
- Views: 10696
Re: No module named requests_oauthlib
You may think you are using Python3. But the traceback you posted is definitely from Python 2. Thanks, I noticed that it says Python 2.7. I opened it up and created it in Python 3, but I think I'll try starting from the beginning again to be sure I'm not crazy. UPDATE: tried on Python 3, got the sa...
- Sun Oct 16, 2016 3:10 pm
- Forum: Python
- Topic: No module named requests_oauthlib
- Replies: 15
- Views: 10696
Re: No module named requests_oauthlib
Try running it with python 3 . Every sample program, every project, every bit of python that is published on https://raspberrypi.org is python 3 unless (in exceedingly exceptional circumstances) you're told to run it with python2. I am using Python 3 on Raspbian. I even tried installing all of the ...
- Sun Oct 16, 2016 4:19 am
- Forum: Python
- Topic: No module named requests_oauthlib
- Replies: 15
- Views: 10696
No module named requests_oauthlib
Hello, brand new to raspberry pi (3) and python. I am trying to send a tweet from python using a Twitter API and I have followed all of the instructions here: https://www.raspberrypi.org/learning/getting-started-with-the-twitter-api/worksheet/ but when I run the module I get this error message: Trac...