Can you open the Python shell in an Atom editor?

You can open multiple tabs in the Atom editor and also have a layout with multiple columns. However, I cannot learn how to open the Python shell inside Atom so that I can load the Python script into the interactive Python shell.

Does anyone know the steps to achieve this?

+6
source share
1 answer

The script package, most likely you want you to be able to test your code by running part or all of it at a time

Screenshot Script Package

You can install it by opening the settings view with Ctrl - , going to the Install panel and searching for the script. You can also install from the command line by doing:

 apm install script 

Technically, what you are asking is closer to the Terminal Plus package , as it opens a terminal panel from which you can load an interactive python environment by entering python .

Plus Terminal Pack Screenshot

+19
source

All Articles