In trying to upgrade my Node 10 to Node 12, I'm hitting a problem I'm unable to Google for. No matter the commands I've run, I always get one of two errors that prevents sudo apt-get update
:
1) This appears when running sudo rm -rf /var/lib/apt/lists/* && sudo rm -rf /etc/apt/sources.list.d/*
:
Reading package lists... Done
E: The repository 'https://kong.bintray.com/kong-deb eoan 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.
1.1) Something I've noticed in the stack trave of sudo rm -rf /var/lib/apt/lists/*
...
Err:10 https://kong.bintray.com/kong-deb eoan Release
404 Not Found [IP: 52.41.180.114 443]
2) When running sudo apt-get update
, I'm presented with:
pi@pop-os:~$ sudo apt-get update
Hit:1 http://us.archive.ubuntu.com/ubuntu eoan InRelease
Hit:2 http://us.archive.ubuntu.com/ubuntu eoan-security InRelease
Hit:3 http://us.archive.ubuntu.com/ubuntu eoan-updates InRelease
Hit:4 https://download.docker.com/linux/ubuntu eoan InRelease
Hit:5 http://us.archive.ubuntu.com/ubuntu eoan-backports InRelease
Hit:6 http://apt.pop-os.org/proprietary eoan InRelease
Ign:7 https://kong.bintray.com/kong-deb eoan InRelease
Err:8 https://kong.bintray.com/kong-deb eoan Release
404 Not Found [IP: 54.191.3.105 443]
Reading package lists... Done
E: The repository 'https://kong.bintray.com/kong-deb eoan 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.
What is happening here, and how can I remove Kong and/or fix sudo apt-get update
?
Additional Information:
- I'm running Pop~_OS 19.10, which is directly based off of Ubuntu 19.10
- I do not have PPA, and unfortunately similar questions whose solutions resulted in the
ppa
command do not work for me.