On a fresh Ubuntu 13.10 (32bit) the steps indicated here will not work. Even if you additionally install python-dev (which seems to be needed by PIP).
The problems seems to be PIP which probably collides with the replacement functionality provided by Pillow (already installed).
The base installation on 13.10 should therefore be:
sudo apt-get install wx2.8-i18n libwxgtk2.8-dev libgtk2.0-dev python-wxgtk2.8 python-wxtools
Don't install python-pip as 1.4 is an old version, instead do:
wget https://bootstrap.pypa.io/get-pip.py -O - | sudo python
Don't install using the requirements.txt, as that includes the old PIP:
sudo pip install pyparsing python-dateutil Skype4Py XlsxWriter
And get the source:
wget http://erki.lap.ee/downloads/Skyperious/skyperious_3.2-src.zip
unzip skyperious_3.2-src.zip
cd skyperious_3.2
The problem is that the skyperious2.sh
file has \r\n
line-endings and /bin/sh
cannot handle those. (You can look at the actual bytes in the different files with od -c filename
,
in the original you will see the \r
before the \n
.)
So do:
tr -d '\r' < skyperious.sh > skyperious2.sh
chmod 755 skyperious2.sh
./skyperious2.sh
Result:

777
is not necessary read permissions on the file is the only requirement. – Anthon Nov 06 '14 at 18:38