Hacker News new | ask | show | jobs
by Sohcahtoa82 2669 days ago
You think dealing with C++ libraries is easier than "pip install <library>"?
2 comments

The happy path (apt-get install, or even ./configure && make && make install) is about the same.

When things go sideways, I find troubleshooting pip a little trickier. Some of this might be the tooling, but there's a cultural part too: C++ libraries seem fairly self-contained, with fewer dependencies, whereas a lot of python code pulls in everything under the sun.

Yes, definitely. In C or C++, I use my distro's package manager to manage the libraries, not some other tool.