-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cant install tox on linux mint - due to wrong instructions on site #97
Comments
PS. The 2nd issue is NOT due to https/http in deb repo url - I tried both ways and it dont work... |
we should just redirect all unknown distro names to a generic section - most of the debian clones ship our dependencies right? |
The smartest thing to do is 1. make a list of top 10/20 most popular debian clones' distro code-names. @stal888 By redirection you mean redirecting debian package requests when the repo packages are being downloaded queried by aptitude/apt ? In the worst case scenario you will not do a redirect but you will have to keep copies of same .deb-s in multiple subfolders - one per distro name... Or maybe just symlink those. Symlinking will allow you to NOT do any redirection. I know a thing or two about packaging but have no experience with specifically this kind of issue. PS. I now noticed that Packages files for most distros are EMPTY. One issue is needed on tox-core so that packaging is fixed and |
Please note that only Debian (Sid, Jessie and Stretch) and Ubuntu (Vivid and Wily) are officially supported. |
@optimumtact came here for help with the same issue for help on my box, which uses a Debian clone as well, and saw your last comment. Kind of turned me off ever using your service. You could solve this easily by just making a PPA available in a way that works for unsupported distros, or a stable binary with a list of dependencies, or a docker container or whatever. Most Debian derived distros will work fine with packages for Debian. The very least you could do is give instructions on your site for setting up the software on an unsupported distro. I absolutely understand where you are coming from not wanting to support everything, but the least you can do is give some idea of how to get it up and going. Come on guys. |
@baordog If you are using the Debian/Ubuntu instructions, they clearly mention
The first sentence says for which Debian/Ubuntu versions we distribute the packages and the second sentence gives "some idea of how to get it up and going".
The instructions we have are somewhat unfriendly towards Debian/Ubuntu derived distros. The issue is that the instructions expect
Unfortunately, we have very small number of package maintainers, each having limited time they can spend on Tox. We welcome any help with packaging, so if you are willing to maintain stable binaries or docker images for every client, we can talk with you about you joining our packaging team. |
Hi,
The page at https://tox.chat/download.html#gnulinux has wrong instructions:
echo "deb https://pkg.tox.chat/debian nightly $(lsb_release -cs)" | sudo tee /etc/apt/sources.list.d/tox.list
wget -qO - https://pkg.tox.chat/debian/pkg.gpg.key | sudo apt-key add -
The problem is that on linux mint $(lsb_release -cs) == rosa/qiana etc.
But the repo at https://pkg.tox.chat/debian does not have such folders.
So to fix:
deb http://pkg.tox.chat/debian nightly trusty
to my /etc/apt/sources.list.d/tox.list
and refresh sources: and try to install qtox or anything from that new repo - nothing happens and there are no such packages...
This 2nd issue is separate and offtopic for this issue que here - where to post it ?
PS. Linux mint is the most popular linux distro - at least acc. to distrowatch stats. So its a pitty that a mint user cant install Tox.
The text was updated successfully, but these errors were encountered: