DIY WiFi Raspberry Pi Touchscreen Camera

Forum Administrative - NOT PROJECT OR "HELP"

Moderators: adafruit_support_bill, adafruit

Please be positive and constructive with your questions and comments.
Locked
Davey1966
 
Posts: 1
Joined: Wed Jan 15, 2014 12:02 am

DIY WiFi Raspberry Pi Touchscreen Camera

Post by Davey1966 »

This code does not work. Github don't have the file.

wget https://github.com/adafruit/adafruit-pi ... master.zip

evharten
 
Posts: 14
Joined: Wed May 02, 2012 12:50 am

Re: DIY WiFi Raspberry Pi Touchscreen Camera

Post by evharten »

Can second that, try'd to download today, it does not exists.

User avatar
pburgess
 
Posts: 4161
Joined: Sun Oct 26, 2008 2:29 am

Re: DIY WiFi Raspberry Pi Touchscreen Camera

Post by pburgess »

Sorry folks, I forgot to throw the switch to "public." Should be good now.

User avatar
pburgess
 
Posts: 4161
Joined: Sun Oct 26, 2008 2:29 am

Re: DIY WiFi Raspberry Pi Touchscreen Camera

Post by pburgess »

Additionally, heads up:

Version 1.0 of the picamera library was released a couple days ago, and the default installation command will load this version. Unfortunately a feature we're relying on is very unstable in that release. We'll keep checking new releases to see when this stabilizes, the workaround in the meantime is to install the 0.8 version instead.

If you already have 1.0 installed, remove with either:

Code: Select all

sudo pip uninstall picamera
or:

Code: Select all

sudo apt-get uninstall python-picamera
depending on the install method used (pip or apt-get), then install 0.8 using pip:

Code: Select all

sudo apt-get install pip
sudo pip install picamera==0.8

Locked
Please be positive and constructive with your questions and comments.

Return to “Administrative (closed)”