From https://www.raspberrypi.org/forums/viewtopic.php?t=66099
I had a quick look, and it appear that Solaar is written in Python, so that is good. In general most repositories (mostly unless they say otherwise) will be targeted towards Intel X86 computers. Binaries from these repositories will be incompatible with the Raspberry Pi as it uses an ARM processor. It is worth a try, there may be no binaries in the repositories.
To create the file, in a terminal type:-
Code: Select all
sudo nano /etc/apt/sources.list.d/solaar.list
Add the two lines:-
Code: Select all
deb http://pwr.github.io/Solaar/packages/ ./
deb-src http://pwr.github.io/Solaar/packages/ ./
And save the file. Then use the following commands to install
Code: Select all
sudo apt-get update
sudo apt-get install solaar
Note: I am guessing somewhat here. Alternatively, you might be better off installing from the github repository. You can do this using the following commands:-
Code: Select all
sudo apt-get update
sudo apt-get install git-core
git clone https://github.com/pwr/Solaar.git
cd pwr
sudo python setup.py install
I had a quick look, and it appear that Solaar is written in Python, so that is good. In general most repositories (mostly unless they say otherwise) will be targeted towards Intel X86 computers. Binaries from these repositories will be incompatible with the Raspberry Pi as it uses an ARM processor. It is worth a try, there may be no binaries in the repositories.
To create the file, in a terminal type:-
Code: Select all
sudo nano /etc/apt/sources.list.d/solaar.list
Add the two lines:-
Code: Select all
deb http://pwr.github.io/Solaar/packages/ ./
deb-src http://pwr.github.io/Solaar/packages/ ./
And save the file. Then use the following commands to install
Code: Select all
sudo apt-get update
sudo apt-get install solaar
Note: I am guessing somewhat here. Alternatively, you might be better off installing from the github repository. You can do this using the following commands:-
Code: Select all
sudo apt-get update
sudo apt-get install git-core
git clone https://github.com/pwr/Solaar.git
cd pwr
sudo python setup.py install