How do I use platformio-ide-terminal to run python code within Atom?
I am only able to bring up a New Terminal using "+" at the bottom left side of the screen, but I cannot figure out how to run the code in the terminal within Atom.
How do I use platformio-ide-terminal to run python code within Atom?
I am only able to bring up a New Terminal using "+" at the bottom left side of the screen, but I cannot figure out how to run the code in the terminal within Atom.
Use
python3 YourFile.py
or
python YourFile.py
This also runs python in a normal terminal. (The second command also works, but for me it defaults to python 2 in some cases)