Arch linux. install instructions

in file
doc/development/development_on_linux.rst

in paragraph
Arch Linux

please add:

[as root]
pacman -S … python2-pip cython2
pip2 install service_identity matplotlib meliae libnacl networkx

this will install all deps for me.

thx : ]

You shouldn’t need to install cython (the python2-meliae already provides the compiled files) or pip as all the dependencies are available in the official repos.

The full list is:

libsodium
libtorrent-rasterbar
phonon-qt5-vlc
python2-apsw
python2-chardet
python2-cherrypy
python2-configobj
python2-contextlib2
python2-cryptography
python2-datrie
python2-decorator
python2-feedparser
python2-keyring
python2-keyrings-alt
python2-libnacl
python2-m2crypto
python2-matplotlib
python2-meliae
python2-netifaces
python2-networkx
python2-pillow
python2-plyvel
python2-psutil
python2-pyqt5
python2-requests
python2-service-identity
python2-twisted
python2-zc.lockfile
qt5-svg

You can get it using:

pacman -Si tribler | awk -F'[:<=>]' '/^Depends/ {print $2}'

If you to install the last dependencies (in case the readme is outdated):

pacman -S $(pacman -Si tribler | awk -F'[:<=>]' '/^Depends/ {print $2}')
1 Like

all the dependencies are available in the official repos

true.

let me add ‘LANG=C’

pacman -S $(LANG=C pacman -Si tribler | awk -F'[:<=>]' '/^Depends/ {print $2}')

looks like pacman is missing an --onlydeps option …

thanks FFY00 : ]