6

I'm using ubuntu 16.04, and lately i've been getting the following error in PyCharm:

PyCharm was unable to save some project files,
are you sure you want to close this project anyway?

Read-only files:
/home/adiel/PycharmProjects/spark-test/.idea/workspace.xml

When using ls -la on the specified .idea folder i get:

drwxrwxr-x 2 adiel adiel 4096 .idea

I've tried using chmod 777 on the folder, but it remains the same.

Any Ideas?

Thanks

Adiel
  • 193

1 Answers1

6

Error message:

PyCharm was unable to save some project files,
are you sure you want to close this project anyway?

Read-only files:
/home/adiel/PycharmProjects/spark-test/.idea/workspace.xml

According to your error message problme is with workspace.xml file. You have to provide appropriate permission to workspace.xml file using sudo chmod command.

Rahul
  • 1,683