strohne / Facepager

Facepager was made for fetching public available data from YouTube, Twitter and other websites on the basis of APIs and webscraping.
https://github.com/strohne/Facepager/releases
506 stars 198 forks source link

build instructions for linux (ubuntu 15.04) #35

Closed crsqq closed 9 years ago

crsqq commented 9 years ago

Ich habe keine Anleitung gefunden, wie man Facepager unter Linux zum laufen bekommt. Vielleicht möchtet ihr die folgenden Schritte in der README.md einfügen, damit Linux-User die Software in Zukunft schneller zum Laufen bringen.

#tested under ubuntu vivid x64
git clone https://github.com/strohne/Facepager
cd Facepager

sudo apt-get install build-essential git cmake libqt4-dev libphonon-dev python2.7-dev libxml2-dev libxslt1-dev qtmobility-dev python-virtualenv

virtualenv facepager_env
. facepager_env/bin/activate

pip install SQLAlchemy python-dateutil requests rauth wheel
cd src/

#you may want to change the download link to the most recent version
wget https://pypi.python.org/packages/source/P/PySide/PySide-1.2.2.tar.gz
extract PySide-1.2.2.tar.gz 
cd PySide-1.2.2/

python2.7 setup.py bdist_wheel --qmake=/usr/bin/qmake-qt4

../pacepager_env/bin/pip2.7 install dist/PySide-1.2.2-cp27-none-linux_x86_64.whl 

#add your credentials
cp credentials.py.readme credentials.py
python Facepager.py
strohne commented 9 years ago

Vielen Dank, habe ich in die readme eingefügt.

dorvak commented 9 years ago

Danke, sehr hilfreich!