I've been trying to install Pybossa and I've been trying to follow these steps from the documentation, and this link too (which they're the same).
when it comes to using this command pip install -r requirements.txt it keeps running some installations and then and error occurred :
ERROR: Could not find a version that satisfies the requirement jeepney==0.4 (from pybossa==3.1.2->-r requirements.t xt (line 3)) (from versions: none)
ERROR: No matching distribution found for jeepney==0.4 (from pybossa==3.1.2->-r requirements.txt (line 3))
this is what's inside requirements.txt : 
I don't know why this is happening as i'm following the documentation .. so i'd glade if anyone helped me.
I'm using :
- Ubuntu server 18.04
- python 2.7
- virtualenv
- PostgreSQL
You are better off going for latest python 3. python 2 had its eol early this year. For new approaches it would be a dead end.
I am on 16.04, but hope you can do the turn likewise
apt-get installmore or less dev packages to your system. It depends how deep you had done gcc compilation in the past. For me it was:sudo apt-get install python3-devsudo apt-get install libsasl2-dev libldap2-dev libssl-devmwhenever you encounter compilation errors like this:
you need to find the appropriate dev lib and add it to the system with
apt-getlike mentioned above by easiest looking the error up in your favorite internet search engineSteps for the setup of pybossa
python3 -m venv ./pb_env. ./pb_env/bin/activatepip install --upgrade pipmkdir pb #shorthand for pybossacd pbgit clone --recursive https://github.com/Scifabric/pybossacd pybossa/pip install -r requirements.txtfeel free to ask again if you still get stuck.