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
For using Python cmd (anaconda environment) in Atom :-
Install "autocomplete-python" package in Atom. { Welcome Guide -> Install a Package -> Open Istaller -> Install -> (Search) autocomplete-python -> Install }
Install "platformio-ide-terminal" package in Atom. { Welcome Guide -> Install a Package -> Open Istaller -> Install -> (Search) platformio-ide-terminal -> Install }
Then, Open Platformio-Ide-Terminal Settings { Welcome Guide -> Install a Package -> Open Istaller -> Packages -> platformio-ide-terminal -> settings }.
Change Shell Override to "C:\WINDOWS\system32\cmd.exe" . {platformio-ide-terminal -> settings -> Core -> Shell Override}
Now, you can see a plus(+) sign at left down corner side of Atom editor. Click on that plus(+) sign, cmd terminal will open on atom.
Use "cd" command to go into anaconda folder.
Then type "python", now you will see the python version in your terminal.
example:
C:\Users\Ankush>cd anaconda3
C:\Users\Ankush\Anaconda3>python
Python 3.6.1 |Anaconda 4.4.0 (64-bit)| (default, May 11 2017, 13:25:24) [MSC v.1900 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information.
print("Hello World") Hello World
Thanks
Ankush