I have Ubuntu 18.04 and python 3.7.
uname -a
Linux username-laptop 4.15.0-109-generic #110-Ubuntu SMP Tue Jun 23 02:39:32 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
When I run sudo apt-get update
I get this error :
E: The repository 'http://dl.bintray.com/aluxian/deb stable Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: The repository 'https://dl.bintray.com/aluxian/deb dev Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
I tried this solution but I am also unable to open Software and updates.
I could finally solve the problem myself. Before that, I did
sudo update-alternatives --config python3
and switched topython 3.6
After that, I followed the answer of the same post (which I couldn't earlier because Software and updates wouldn't open) and untickedhttps://dl.bintray.com/aluxian/deb
. Then thesudo apt-get update
problem was solved !!!Probably find the repository is not on
apt-get
anymore. Usesudo apt update
, it will then tell what packages need to be upgraded. Just upgrade them all by typing insudo apt upgrade
in your terminal. Updatesnap
as well. Ubuntu relies onsnap
more so thanapt-get
andapt
. Bit of a grey area in open-source software.