I have already made my web app offline, but would like to get it running here. I've set up my database on a mysql console, and I installed pymysql on another virtualenv console, receiving this response in my virtualenv:
Installing collected packages: pymysql
Successfully installed pymysql-0.7.6
Yet when I run the following code in my flask_app.py file:
import pymysql
I receive the error:
File "/home/ryanpe05/mysite/flask_app.py", line 3, in <module>
import pymysql
ImportError: No module named 'pymysql'
Any ideas as to what is causing the issue? I don't see a lot of other posts talking about pymysql.