![]() |
|
good editor for python on windows? - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Python (https://sinister.ly/Forum-Python) +--- Thread: good editor for python on windows? (/Thread-good-editor-for-python-on-windows) |
good editor for python on windows? - RoadToGreatness - 01-15-2014 I've looked on the forum and came up short while trying to find any opinions of a good editor program to run with python 3.x for windows:Not-Amused: I was going to go with "emacs" but i cant seem to find a publisher that seems legit.. :Slant: With there being so many to choose from I cant seem to figure out how to narrow the choices down to a solid working program.. I'm sure i sound like a complete noob(which in fact i am), But If anyone can point me in the right direction I'd be grateful. RE: good editor for python on windows? - RoadToGreatness - 01-15-2014 It's seems as if I'm not allowed to delete this post... I Figured out my problem. If an Admin could delete this for me that would be great. haha RE: good editor for python on windows? - mls577 - 01-15-2014 (01-15-2014, 03:04 AM)RoadToGreatness Wrote: I've looked on the forum and came up short while trying to find any opinions of a good editor program to run with python 3.x for windows:Not-Amused:It's mainly personal preference. You can write program in windows notepad if you want. Personally, I don't need anything fancy to write code, I use notepad++ and as long as it will highlight the syntax for me, it's good enough for me, but that's just my personal opinion. RE: good editor for python on windows? - RoadToGreatness - 01-15-2014 [/quote] It's mainly personal preference. You can write program in windows notepad if you want. Personally, I don't need anything fancy to write code, I use notepad++ and as long as it will highlight the syntax for me, it's good enough for me, but that's just my personal opinion. [/quote] I appreciate your input. I'll try this one out as well. Cant wait to get the hang of this! RE: good editor for python on windows? - upsurt - 01-15-2014 Eclipse or Notepad++ RE: good editor for python on windows? - RoadToGreatness - 01-15-2014 (01-15-2014, 09:30 AM)upsurt Wrote: Eclipse or Notepad++ thanks, I did end up going with notepad++. Still working my way up to learning how to save and establish a good grasp on the concept. Some of the things i am finding online are a bit confusing, but I'm sure I'll figure it all out soon enough. RE: good editor for python on windows? - ART33R - 01-16-2014 Since you are a beginner in programming, so it is wise for you to choose a text editor that is beginner friendly, Texteditors as Notepad + + or Sublime Text 3.2 emphasizes especially newbie friendly but virtually all text editors are fine, what matters here is how you enjoy working with text editor shoulder and confidence to where you are with it. Advise you to try different text editors and find out which one is right for you! Links to some texteditor/IDE you can test (Search on Google for more): http://www.sublimetext.com/2 http://notepad-plus-plus.org/download/v6.5.3.html http://sourceforge.net/projects/pyscripter/ http://sourceforge.net/projects/pydev/ (PyDev is a Python Plugin for Eclipse IDE) http://www.textpad.com/download/index.html RE: good editor for python on windows? - Ligeti - 01-16-2014 My advice... avoid IDEs when learning (specially the ones come with auto-complete feature), use a simple text editor, I use notepad++ (the best IMHO), and sometimes I use the GUI tool that comes with Python (Start->Pythonx.x->Python GUI) when I am on a machine that has no notepad++ Good luck RE: good editor for python on windows? - RoadToGreatness - 01-17-2014 (01-16-2014, 02:18 PM)ART33R Wrote: Since you are a beginner in programming, so it is wise for you to choose a text editor that is beginner friendly, Texteditors as Notepad + + or Sublime Text 3.2 emphasizes especially newbie friendly but virtually all text editors are fine, what matters here is how you enjoy working with text editor shoulder and confidence to where you are with it. Advise you to try different text editors and find out which one is right for you! (01-16-2014, 05:52 PM)Ligeti Wrote: My advice... avoid IDEs when learning (specially the ones come with auto-complete feature), use a simple text editor, I use notepad++ (the best IMHO), and sometimes I use the GUI tool that comes with Python (Start->Pythonx.x->Python GUI) when I am on a machine that has no notepad++ I greatly appreciate the input guys. I did in fact go with notepad++. Now i'm just trying to figure out how to use everything correctly in order to build some things. i've been leaning heavily towards video tutorials since they explain/show the terminology and seem to speed up the learning process for me. codecadamey seems to have a lot of great stuff for beginners like myself. |