I\'m trying to use PyMySQL on Ubuntu.
I\'ve installed pymysql
using both pip
and pip3
but every time I use import pymysq
To get around the problem, find out where pymysql is installed.
If for example it is installed in /usr/lib/python3.7/site-packages
, add the following code above the import pymysql
command:
import sys
sys.path.insert(0,"/usr/lib/python3.7/site-packages")
import pymysql
This ensures that your Python program can find where pymysql is installed.