Regardless of which library packages you think are not installed, you can install using sudo apt-get install . But the problem is to find the correct package name that apt-get can understand. So how to do this ?! just
use the command: sudo apt-cache search <filename>
For example: in this case lmysqlclient
sudo apt-cache search mysqlclient
(remember to exclude 'l' from the actual name, i.e. mysqlclient, not lmysqlclient). This outputs:
libmysqlclient-dev - MySQL database development files
In the above -libmysqlclient-dev is the name that apt-get can recognize and solve, cannot find lmysqlclient we cannot find lmysqlclient problem cannot find lmysqlclient
so now type: sudo apt-get install libmysqlclient-dev from the interface. Once this is done, try creating the desired file.
Sri Hari YS
source share