@giles Thank you for your response. If I import the required libraries for my app using Python 2.7 then I get the following error
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/antonioACR1/.virtualenvs/my-virtualenv/local/lib/python2.7/site-packages/scipy/__init__.py", line 109, in <module>
from scipy._lib._version import NumpyVersion as _NumpyVersion
ImportError: No module named _lib._version
However this error dissapears when I use Python 3.5, but in that case I get another error
File "/home/antonioACR1/flaskapp1/flask_app.py", line 9, in <module>
from flaskext.mysql import MySQL
ImportError: No module named 'flaskext'
because I need MySQL for my app. I installed flask-mysql using pip in my-virtualenv. Could you please tell me what might be the problem?
[edit by admin: formatting]