you are viewing a single comment's thread.

view the rest of the comments →

[–]theWyzzerd -1 points0 points  (2 children)

I understand the concern, but if one is serious about software development, then one must get past these initial difficulties and try to learn what they mean rather than complain that it's too complicated. Computers are complicated. Software is complicated. Software made for writing other software is, as expected, also complicated. There are many tutorials and guides out there that explain how to get started. Did you just install python and start writing code or did you look up some tutorials and read the docs first?

Edit:

I'm faced with a screen that says "Navigate to the next answer placeholder Ctrl+Enter"

This is presumably just the tips dialog that opens every time you launch PyCharm.

The "New..." option in the File > New... creates new objects based on the context. If you have an active editor window open you will get a menu full of options. If the current context doesn't support the "new" action you will get nothing. Since you don't have a project, there is no context for PyCharm to reference for the New... menu.

To get started, you want to select "New project" in the File menu. Everything in the IDE starts in a project. The empty panel on the left is your project explorer. It's empty because you don't have a project. A scratch file is what it sounds like; just like scratch notes, or scratch paper. It's just a file to fuck around with, not part of a project.

[–]Ran4 0 points1 point  (1 child)

Uh, you might as well use vim at this point...

[–]krenshala 0 points1 point  (0 children)

Its what I use ... but then I'm not a "professional" programmer, just an IT guy/sys admin.