You can add the Anaconda python path to the beginning of your path in the init.coffee file. From the Atom menu, select Open Your Init Script. Or use Command-shift-P to open the fuzzy crawler and type something in the "Open Your Init Script" line:
then add something like:
process.env.PATH = ['/Users/dan/anaconda/bin/', process.env.PATH].join(':')
to the end of init.coffee. Of course, you need to replace /Users/dan/anaconda/bin with the path to your anaconda/bin . If you don't already know this, try entering which python at the command line.
After adding the line, save init.coffee and restart Atom.
Danickickstein
source share