Using anaconda environment in Atom

后端 未结 6 729
自闭症患者
自闭症患者 2020-12-04 13:49

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

6条回答
  •  借酒劲吻你
    2020-12-04 14:03

    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

提交回复
热议问题