How to install latest version of boost for using in Qt Creator on Ubuntu?
-
@aha_1980 18.04.1 LTS.
@Nima-Ghorab Not even Debian Sid has the latest boost version, so if you don't find a third party package, no way to get the latest version. Sorry
-
@Nima-Ghorab
Hi
Just as a note.
You can 1.65 with a (private?) PPA
https://www.osetc.com/en/how-to-install-boost-on-ubuntu-16-04-18-04-linux.html#install-boost-ppa -
@Nima-Ghorab
Hi
Just as a note.
You can 1.65 with a (private?) PPA
https://www.osetc.com/en/how-to-install-boost-on-ubuntu-16-04-18-04-linux.html#install-boost-ppaDear @mrjj I did that but when I want to install it via apt-get it tells me that unable to locate package libboost!
I checked out Software and Updates the repository is successfully added but it doesn't work! -
Dear @mrjj I did that but when I want to install it via apt-get it tells me that unable to locate package libboost!
I checked out Software and Updates the repository is successfully added but it doesn't work!@Nima-Ghorab
hi
so first you did
$ sudo add-apt-repository ppa:mhier/libboost-latest
$ sudo apt update
and then
sudo apt install libboostand then it said it didnt know libboost ?
-
@Nima-Ghorab
hi
so first you did
$ sudo add-apt-repository ppa:mhier/libboost-latest
$ sudo apt update
and then
sudo apt install libboostand then it said it didnt know libboost ?
@mrjj Yes exactly I did but it didn't work!
Is this the same for you? -
@mrjj Yes exactly I did but it didn't work!
Is this the same for you?@Nima-Ghorab
Hi
ahh names are a bit differnt than last time
try
sudo apt install libboost1.68 -
@Nima-Ghorab
Hi
ahh names are a bit differnt than last time
try
sudo apt install libboost1.68@mrjj Thank you so much and at the end I have two questions:
1_How did you get that we should use sudo apt install libboost1.68 instead of sudo apt install libboost?
2_Why major repositories don't update their databases to the latest version of libraries so that users can choose the proper version they want?
Thank you so much! -
- Using apt-cache to list the various boost package
- Debian (which Ubuntu is based on) is known to ship packages that are considered stable because they have gone through thorough testing. They have a procedure to follow which means the package has to go first through unstable, then testing and finally stable.
"Latest and greatest" doesn't fit in the latest category.
All of this work requires time and people.
Most Linux distributions are the result of the work of volunteers who help creating packages and maintaining them. If you need that much a package for a given distribution, you are welcome to help the effort of getting it on it.
-
- Using apt-cache to list the various boost package
- Debian (which Ubuntu is based on) is known to ship packages that are considered stable because they have gone through thorough testing. They have a procedure to follow which means the package has to go first through unstable, then testing and finally stable.
"Latest and greatest" doesn't fit in the latest category.
All of this work requires time and people.
Most Linux distributions are the result of the work of volunteers who help creating packages and maintaining them. If you need that much a package for a given distribution, you are welcome to help the effort of getting it on it.