Page 1 of 1
libboost, libsqlite3-dev and others not installable
Posted: Sun Oct 23, 2022 6:03 pm
by Herzbergh
Hey,
does anyone know how i can install the following packages?
lua-devel luajit-devel sqlite-devel protobuf-devel protobuf-compiler shapelib-devel rapidjson
libboost-dev libboost-filesystem-dev libboost-iostreams-dev libboost-program-options-dev libboost-system-dev
liblua5.1-0-dev libprotobuf-dev libshp-dev libsqlite3-dev protobuf-compiler rapidjson-dev
best herzbergh
Re: libboost, libsqlite3-dev and others not installable
Posted: Sun Oct 23, 2022 6:21 pm
by timkb4cq
We need more info. What error messages are you getting when trying to install these?
Re: libboost, libsqlite3-dev and others not installable
Posted: Tue Oct 25, 2022 8:44 am
by Herzbergh
hi,
they dont exist in the repository..
try libboost-dev.. its is not availably in the repository!
best,
Re: libboost, libsqlite3-dev and others not installable
Posted: Tue Oct 25, 2022 11:42 am
by timkb4cq
They're definitely available.
Code: Select all
$ apt-cache policy libboost-dev
libboost-dev:
Installed: 1.74.0.3
Candidate: 1.74.0.3
Version table:
*** 1.74.0.3 500
500 http://deb.debian.org/debian bullseye/main amd64 Packages
100 /var/lib/dpkg/status
Code: Select all
$ apt-cache policy libsqlite3-dev
libsqlite3-dev:
Installed: 3.34.1-3
Candidate: 3.34.1-3
Version table:
*** 3.34.1-3 500
500 http://deb.debian.org/debian bullseye/main amd64 Packages
100 /var/lib/dpkg/status
If you're using the MX Package Installer you might be overlooking a relevant chackbox.
Screenshot_2022-10-25_11-40-00.png
Re: libboost, libsqlite3-dev and others not installable
Posted: Tue Oct 25, 2022 2:26 pm
by Herzbergh
No not here:
# apt-cache policy libboost-dev
N: Package libboost-dev can not be found.
Repos: Packages: 2517 apt: 2504 lib: 1237 flatpak: 13
No active apt repos in: /etc/apt/sources.list
Active apt repos in: /etc/apt/sources.list.d/debian-stable-updates.list
1: deb
http://mirror.ipb.de/debian/ bullseye-updates main contrib non-free
Active apt repos in: /etc/apt/sources.list.d/debian.list
1: deb
http://security.debian.org/debian-security/ bullseye-security main contrib non-free
No active apt repos in: /etc/apt/sources.list.d/docker.list
Active apt repos in: /etc/apt/sources.list.d/mx.list
1: deb
https://mirror.23m.com/mx-packages/mx/repo/ bullseye non-free main
2: deb
https://mirror.23m.com/mx-packages/mx/repo/ bullseye ahs
No active apt repos in: /etc/apt/sources.list.d/mxlinux.list
No active apt repos in: /etc/apt/sources.list.d/various.list
Re: libboost, libsqlite3-dev and others not installable
Posted: Tue Oct 25, 2022 2:49 pm
by timkb4cq
You're missing the main stable debian repo
Code: Select all
deb http://deb.debian.org/debian/ bullseye main contrib non-free
In the
MX Repo Manager ->
Debian repos tab there's a checkbox for that one that should have been checked by default.
Re: libboost, libsqlite3-dev and others not installable
Posted: Thu Oct 27, 2022 8:01 pm
by Herzbergh
thank you that worked! but do you also know how to install "bazel"?
On Ubuntu/Debian it should also work with:
apt-get install bazel
but the package can't be found.. (
https://bazel.build)
thx!
Re: libboost, libsqlite3-dev and others not installable
Posted: Thu Oct 27, 2022 8:47 pm
by timkb4cq
The only bazel packages in debian bullseye are bazel-bootstrap & bazel-bootstrap-data.
You have to use bazel's own repository to find a bazel package, and since it's a repo for Ubuntu it may or may not find its dependencies.
Bazel recommends using Bazelisk to install bazel. That might be the best way.
https://bazel.build/install/bazelisk
Re: libboost, libsqlite3-dev and others not installable
Posted: Sat Nov 12, 2022 2:20 pm
by Herzbergh
ok thank you!