I want to start a Flask app. I installed virtualenvwrapper to manage the packages but I can't let Atom know that the current project should use the virtualenv's python binary.
from flask import Flask, render_template
Using Atom's script runner, I get an "ImportError: No module named flask".
I don't want the hassle of having to change to a terminal to run the app
In Linux:
Start your virtual environment python.
Launch atom from your python virtual environment.
(EVP) abc $ atom
That's all.