Question :
How to setup Atom’s script to run Python 3.x scripts? May the combination with Windows 7 Pro x64 be the issue?
I’m trying to switch from Notepad++ to Atom, but I just can’t manage to get my scripts executed in Atom.
I followed this answer (so I already installed script) which is not really extensive and also the rest on the web doesn’t offer anything comprehensible for beginners.
In Notepad++ NPPexec I used to
NPP_SAVE
cd "$(FULL_CURRENT_PATH)"
C:Python34python.exe -u "$(FULL_CURRENT_PATH)"
and in Sublime Text 2 I made it run by creating a new “Build System”:
{
"cmd": ["C:\python34\python.exe", "-u", "$file"],
"file_regex": "^[ ]*File "(...*?)"", line ([0-9]*)"",