python - No module named 'pymysql' -
i'm trying use pymysql on ubuntu.
i've installed pymysql
using both pip
, pip3
every time use import pymysql
, returns importerror: no module named 'pymysql'
i'm using ubuntu 15.10 64-bit , python 3.5.
the same .py works on windows python 3.5, not on ubuntu.
sort of answered in comments, question has answer, problem resolved through running:
sudo apt-get install python3-pymysql
Comments
Post a Comment