Difference between revisions of "Installation of WeDo Python Support"

From wikidb
Jump to: navigation, search
(New page: == Software Dependancies == Some or all of the following are required. <pre> aptitude install python-pip </pre>)
 
Line 5: Line 5:
 
<pre>
 
<pre>
 
aptitude install python-pip
 
aptitude install python-pip
 +
aptitude install python-dev
 +
aptitude install python-usb
 +
aptitude install git
 +
</pre>
 +
 +
== Standard install for WeDo Library - Failing ==
 +
 +
<pre>
 +
pip install wedo
 +
</pre>
 +
 +
A possible workaround for the missing CHANGES.rst file.
 +
 +
<pre>
 +
cd build/wedo/
 +
cat one two three > CHANGES.rst
 +
python setup.py install
 +
</pre>
 +
 +
== Workaround install for WeDo Library ==
 +
 +
<pre>
 +
git clone git://github.com/itdaniher/WeDoMore.git
 +
cd WeDoMore/
 +
sudo python setup.py install
 
</pre>
 
</pre>

Revision as of 09:23, 12 May 2013

Software Dependancies

Some or all of the following are required.

aptitude install python-pip
aptitude install python-dev
aptitude install python-usb
aptitude install git

Standard install for WeDo Library - Failing

pip install wedo

A possible workaround for the missing CHANGES.rst file.

cd build/wedo/
cat one two three > CHANGES.rst
python setup.py install

Workaround install for WeDo Library

git clone git://github.com/itdaniher/WeDoMore.git
cd WeDoMore/
sudo python setup.py install