Missing include “bits/c++config.h” when cross compiling 64 bit program on 32 bit in Ubuntu

Adding this answer partially because it fixed my problem of the same issue and so I can bookmark this question myself. I was able to fix it by doing the following: sudo apt-get install gcc-multilib g++-multilib If you’ve installed a version of gcc / g++ that doesn’t ship by default (such as g++-4.8 on lucid) … Read more

no module named zlib

Sounds like you need to install the devel package for zlib, probably want to do something like # ubuntu 12,14,16,18,20.04+ sudo apt-get install zlib1g-dev Instead of using python-brew you might want to consider just compiling by hand, it’s not very hard. Just download the source, and configure, make, make install. You’ll want to at least … Read more