Reputation: 23
Installed PyCharm on the new windows10. If i create a new project everything works ok - all buttons on the places. But if i run ANY .py file associated with pycharm i see just the code and no Run or configure buttons. There is also no indexing\something bar at the bottom. I've waited for couple hours and nothing changed.
The same thing on new linux.
What am i doing wrong? (i also can't rightclick the file cuz 'nothing here' appears)
as you can see - no buttons..?
Upvotes: 2
Views: 7297
Reputation: 3
It could be that at some point you accidentally reassigned the "*.py" file name pattern in PyCharm to another category than "Python".
Go to File->Settings->Editor->File types and look for "*.py". Remove it from the found category and add it to "Python". Restart PyCharm.
In the end, make sure that the "*.py" file name pattern is an active pattern in category "Python". Expected result
Upvotes: 0
Reputation: 7609
Seems you started PyCharm in the light edit mode (see https://blog.jetbrains.com/idea/2020/04/lightedit-mode/), try to run PyCharm first and then create project on top of your directory or just open this directory.
Upvotes: 1
Reputation: 304
This is because when you install Pycharm and start with new scratch file, Pycharm doesn't know which file you want to run so you can see Run. To Run your script Right-Click in the space and then click on Run. After this you will get a Run button in the top-right of the corner.
Hope it helps!
Upvotes: 0
Reputation: 116
Here is a link to the jetbrain tutorial on how to open/hide a navigation bar. Use the navigation bar
Upvotes: 0
Reputation: 26
Pycharm associated all .py to edit, you will open the source code. To run, try "right click" and search for "RUN" or click "CTRL+SHIFT+F10"
Upvotes: 0