Skip to content

Instantly share code, notes, and snippets.

@Mashpy
Created January 16, 2015 18:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mashpy/569bc8ee4552cb517a40 to your computer and use it in GitHub Desktop.
Save Mashpy/569bc8ee4552cb517a40 to your computer and use it in GitHub Desktop.
1 ls
2 apt-get update
3 apt-get install python-pip debhelper python-support
4 pip install tornado stdeb
5 wget https://github.com/downloads/liftoff/GateOne/gateone_1.1-1_all.deb
6 ls
7 dpkg -i gateone_1.1-1_all.deb
8 apt-get install git
9 git clone https://github.com/liftoff/GateOne.git
10 cdls
11 ls
12 dpkg -i gateone_1.1-1_all.deb
13 cd GateOne/
14 ls
15 python setup.py install
16 service gateone start
17 ls
18 cd ..
19 wget https://github.com/downloads/liftoff/GateOne/python-tornado_2.4-1_all.deb
20 dpkg -i python-tornado_2.4-1_all.deb
21 service gateone restart
@f0ru0l0rd
Copy link

python-support is no longer supported: https://launchpad.net/ubuntu/xenial/amd64/python-support/1.0.15
It throws an error.
I'm told the replacement is dh_python2 from dh-python. Can you please verify this information.
Thank you.

@skywalker45
Copy link

If anyone is still looking for a fix for this, here is a simple solution. The error you get when you try to install the python-support is "the package has no installation candidate". I think this means there is no supported repository with the package, maybe.... So to solve this, you can either look for a repository to download the package from, or you can download it a website.. Here is a simple solution that works..

Type command:
wget http://launchpadlibrarian.net/109052632/python-support_1.0.15_all.deb
sudo dpkg -i python-support_1.0.15_all.deb

Then continue with the installation.
Source: https://askubuntu.com/questions/766169/why-no-more-python-support-in-16-04

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment