Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable read-only project files in PyCharm?

Tags:

django

pycharm

I installed the Apache2 server on Kubuntu and then installed Django (2.0.4) and now all the project files are not available for editing (in PyCharm). I use the 'kate' utility to edit them with sudo. Tell me please how to disable read-only project files in PyCharm.

like image 456
Pavel Silber Avatar asked Jan 02 '23 12:01

Pavel Silber


1 Answers

It can be done by regular chown command (Assuming you are using linux)

Try this command
sudo chown -R $USER:$USER /home/user/path/to/project/

Source : How can I become the owner of a file/folder that root owns?

like image 158
JPG Avatar answered Jan 05 '23 14:01

JPG