6

I'm using PyCharm on Windows. How can I set executable bit or modify other permissions like Linux chmod? I found this only and nothing suitable in plugins but still hope there's a better solution then switching to Linux console for that purpose.

Putnik
  • 5,925
  • 7
  • 38
  • 58

1 Answers1

6

I ran into the same issue, but I wasn't very eager to install yet another plugin. If you happen to use Git, you can do it from PyCharm's terminal using the following command:

git update-index --chmod=+x path-to-your-file
mlvnd
  • 78
  • 1
  • 3