Python 3 Startup Issues after Deletion of Extra Files in Project Folder

Asked

Viewed 116 times

-3

I deleted some files from the project folder I was using and when I tried to open Python again, this message appeared:

Internal error. Please report to http://jb.gg/ide/critical-startup-errors

Error:

java.io.FileNotFoundException: C:\Users\Dikson\.PyCharmEdu2018.3\config\port (Acesso negado)
    at java.io.FileOutputStream.open0(Native Method)
    at java.io.FileOutputStream.open(FileOutputStream.java:270)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213)
    at com.intellij.openapi.util.io.FileUtil.writeToFile(FileUtil.java:1274)
    at com.intellij.openapi.util.io.FileUtil.writeToFile(FileUtil.java:1268)
    at com.intellij.openapi.util.io.FileUtil.writeToFile(FileUtil.java:1253)
    at com.intellij.idea.SocketLock.lambda$lock$2(SocketLock.java:151)
    at com.intellij.idea.SocketLock.underLocks(SocketLock.java:179)
    at com.intellij.idea.SocketLock.lock(SocketLock.java:124)
    at com.intellij.idea.StartupUtil.lockSystemFolders(StartupUtil.java:318)
    at com.intellij.idea.StartupUtil.prepareAndStart(StartupUtil.java:122)
    at com.intellij.idea.MainImpl.start(MainImpl.java:20)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at com.intellij.ide.plugins.PluginManager.lambda$start$0(PluginManager.java:75)
    at java.lang.Thread.run(Thread.java:745)

I was dealing with a Arquivo.CSV and he created some extra files in the project folder. I decided to delete them and gave this. Would have some way to solve?

1 answer

1


Python3 has no problem.

As you can see, the error is "Java", as in the message "java.io.Filenotfoundexception: C: Users Dikson.Pycharmedu2018.3 config port (Access denied) " - which alias tells the whole story of the error.

Vice made a mistake with Pycharm - not Python. Pycharm is the text editor with extra tools - an "Integrated Development Environment" or "IDE", which you use to develop your project.

And, to do its integrations, it records metadata and annotations about your project - with those files there in that folder that you deleted, or changed the access permissions.

The good news is that your Python files are intact - completely delete the Pycharm folder - this one ". Pycharmedu2018.3" - the IDE will create a new one without access issues the next time it runs.

  • Thanks ! : ) I will take advantage and update Pycharmedu.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.