How to install GLIBC 2.29 or higher in Ubuntu 18.04

You can try to download glibc from the official source and install it: wget -c https://ftp.gnu.org/gnu/glibc/glibc-2.29.tar.gz tar -zxvf glibc-2.29.tar.gz mkdir glibc-2.29/build cd glibc-2.29/build ../configure –prefix=/opt/glibc make make install Pay attention to avoid breaking your OS environment: you need to specify the prefix and configure the separate path when you are using it. See this answer … Read more

Could not load dynamic library ‘libcublas.so.10’; dlerror: libcublas.so.10: cannot open shared object file: No such file or directory;

On Ubuntu 20.04, you can simply install NVIDIAs cuda toolkit cuda: sudo apt-get update sudo apt install nvidia-cuda-toolkit There are also install advices for Windows. The packge is around 1GB and it took a while to install… Some minutes later you need to export PATH variables so that it can be found: Find Shared Object … Read more

How to fix: cx_Oracle.DatabaseError: DPI-1047: Cannot locate a 64-bit Oracle Client library – Python

After some more research i got the solution from Ubuntu community , after you have installed oracle instant-client you will have to integrate oracle libraries as follows: export LD_LIBRARY_PATH=/usr/lib/oracle/<version>/client(64)/lib/${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} An example for 12.1 version for Linux x86_64 can be: export LD_LIBRARY_PATH=/usr/lib/oracle/12.1/client64/lib/${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} where <version> indicates the version of your of your oracle instant-client e.g 11.2, 12.2 … Read more

How do I resolve ‘The character device /dev/vboxdrv does not exist’ error in Ubuntu 18.04 [closed]

It clearly states that you need to install the virtualbox-dkms packages. You can follow these steps to solve the problem. Install the virtualbox-dkms sudo apt-get install virtualbox-dkms Once you install those packages you also need to do the reconfiguration: sudo dpkg-reconfigure virtualbox-dkms sudo dpkg-reconfigure virtualbox If your problem is still not fixed try installing the … Read more

How do I install pip for python 3.8 on Ubuntu without changing any defaults?

While we can use pip directly as a Python module (the recommended way): python -m pip –version This is how I installed it (so it can be called directly): Firstly, make sure that command pip is available and it isn’t being used by pip for Python 2.7 sudo apt remove python-pip Now if you write … Read more

How do I troubleshoot “Inconsistency detected: dl-lookup.c: 111” (Java Result 127) error?

Downgrade OpenJDK 11 to 8 I had the same problem in Xubuntu 18.04 with Eclipse 2018-12 (4.10.0), using LibGDX. It was working fine, but probably some update in the system (or to OpenJDK specifically) started this problem. In addition Gradle Tasks weren’t showing up in the Gradle Window. I solved the issue by removing theses … Read more