Hi,
I'm able to import the package dash from the console with my virtualenv active.
(env1) 13:28 ~ $ python
Python 2.7.6 (default, Oct 26 2016, 20:30:19)
[GCC 4.8.4] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import dash
>>>
However, when I when launching my web app I get import error
2017-07-16 13:36:55,275: Error running WSGI application
2017-07-16 13:36:55,293: ImportError: No module named dash
2017-07-16 13:36:55,293: File "/var/www/sherm4nlc_pythonanywhere_com_wsgi.py", line 120, in <module>
2017-07-16 13:36:55,293: from analysis_dash import app as application
2017-07-16 13:36:55,293:
2017-07-16 13:36:55,293: File "/home/Sherm4nLC/hello_pdash/analysis_dash.py", line 2, in <module>
2017-07-16 13:36:55,293: import dash
Virtualenv was added to the Web App config Dashboard >>>
Virtualenv: Use a virtualenv to get different versions of flask, django etc from our default system ones. More info here. You need to Reload your web app to activate it; NB - will do nothing if the virtualenv does not exist. /home/Sherm4nLC/env1
Any ideas?