So, I read through all of Using virtualenv with sublime text 2, but seeing how the accepted answer is clearly incorrect, I'm still very confused.
I'm trying to run my chorus.py
file from within Sublime. I've altered my build system to look like this:
"build_systems":
[
{
"name": "Scraper",
"cmd" : ["/Users/thumbtackthief/.virtualenvs/chorus", "$file"]
}
]
(based on the fact that when I enter os.environ['VIRTUAL_ENV']
from the terminal that's the path that spits out--maybe I'm doing that wrong?)
When I build my file, I get [Errno 13] Permission denied
. I'm not sure where to go from here.