Fix for "Is the package apt-transport-https installed?"
# Fix for "Is the package apt-transport-https installed?"
- Raspberry Pi 1 A+
- sudo apt-get update
# Solution
`
sudo vi /etc/apt/sources.list
`
`
# Was: 12/19/17. Updated 9/13/21 to point to "legacy" server.
deb http://legacy.raspbian.org/raspbian/ jessie main contrib non-free rpi
# Uncomment line below then 'apt-get update' to enable 'apt-get source'
deb-src http://legacy.raspbian.org/raspbian/ jessie main contrib non-free rpi
`
`
cd /usr/lib/apt/methods
sudo ln -s http https
`
# References
- https://forums.raspberrypi.com/viewtopic.php?t=343512
- https://www.reddit.com/r/ChipCommunity/comments/lvo82m/fix_for_is_the_package_apttransporthttps_installed/
Comments