I\'ve install Anaconda (Python 3.6) and tensorflow (python 3.5). I\'ve managed to get it run both on Spyder and on sublime text 3( by making new build system). Now all the
I had this same issue, and after some exploring, found that this worked well:
There is a file (I'm on macOS Catalina 10.15.3):
~/.atom/packages/platformio-ide-terminal/lib/platformio-ide-terminal.coffee
Look for the autoRunCommand section:
autoRunCommand:
title: 'Auto Run Command'
description: 'Command to run on terminal initialization.'
type: 'string'
default: ''
If you set the default to:
'export PATH=~/opt/anaconda3/bin:$PATH'
platformio will execute this command every time you start Atom, and it will use the default anaconda python, as specified in the new PATH.
You can then type "conda activate myenvironment" in the platformio terminal and it will work like normal (switch between environments, install packages, etc.). Hope this helps.