I must use "scons" in version 3.0.x but in Ubuntu eoan scons is at version 3.1.x [0]. I tried to edit /etc/apt/sources.list
and added
deb http://de.archive.ubuntu.com/ubuntu bionic main
After sudo apt update
sudo apt list scons
still only shows scons/eoan,eoan 3.1.1.-3 all
How can I install scons 3.0.x on Ubuntu Eoan?
scons
with the version name as well?sudo apt install scons=3.0.1-1
After you install that version it is recommended that you put a hold on the app so it doesn't upgradesudo apt hold scons
then remove or comment out the older bionic source. – Terrance Nov 25 '19 at 14:22sudo apt install scons=3.0.1-1
results inVersion '3.0.1-1' for scons was not found
– phip1611 Nov 25 '19 at 14:28universe
and notmain
. After setting it up you should be able to runapt-cache madison scons
and it should show you all the versions available. – Terrance Nov 25 '19 at 14:29universe
andmain
stand for? – phip1611 Nov 25 '19 at 14:41sudo apt hold scons
doesn't work butsudo apt-mark hold scons
does – phip1611 Nov 25 '19 at 14:46