I have been trying to install ROS Kinetic for my Raspberry Pi 3 for the past few weeks, but have been encountering numerous problems. The most recent problem is that I am trying to build my catkin workspace, but I found that the error is occurring with Cmake. It kept giving me an error message detailing about how it can't find bzip2. After some research, I figured that I needed to install libbz2-dev in order to create the header files necessary for Cmake to recognize bzip2.
But when I try to run:
$ sudo apt-get install libbz2-dev
It returns this message:
Err:1 http://raspbian.raspberrypi.org/raspbian buster/main armhf bzip2-doc all 1.0.6-9
404 Not Found [IP: 93.93.128.193 80]
Err:2 http://raspbian.raspberrypi.org/raspbian buster/main armhf libbz2-dev armhf 1.0.6-9
404 Not Found [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/b/bzip2/bzip2-doc_1.0.6-9_all.deb 404 Not Found [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/b/bzip2/libbz2-dev_1.0.6-9_armhf.deb 404 Not Found [IP: 93.93.128.193 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
I cannot find any resources anywhere to help me understand why the links aren't working, so I am posting here for help. Please let me know if I need to provide any other information.