Besides the command line / bash, is it possible to run and make python files without and IDE? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Besides the command line / bash, is it possible to run and make python files without and IDE?

I've heard it's possible to use command line and bash to make python programs. Do you know of any other methods outside of IDES?

14th Jan 2021, 5:35 AM
Alexander Longo
Alexander Longo - avatar
3 Answers
+ 3
To make files, you only need an editor. IDEs come with built-in editor and on command line, there are many editors you can install. What I want to say is, all ypu need to make files is a software that can read and write files. As for running a Python program, for practical purposes, you will need an IDE or a terminal/command line. You can't run a progam without that. Most text editors, with a little bit of configuring allow you to run files too.
14th Jan 2021, 6:04 AM
XXX
XXX - avatar
+ 3
You need an IDE or an editor for writing python codes. Text editor can be GUI or CLI. But without text editor 😅 It's not possible man. All the best!
14th Jan 2021, 6:53 AM
Abhiyantā
Abhiyantā - avatar
+ 2
Python programs are essentially just collections of text files, so you could use CLI text editor like Vim and run the program through command line. Takes some getting used to, but certainly viable according to many power users.
14th Jan 2021, 6:41 AM
BlazingMagpie
BlazingMagpie - avatar