37

It seems that PyCharm always updates the connected Python interpreter on startup and also scans and updates all packages if needed. For me this means whenever I open PyCharm there will be updating processes running in background and I have to wait sometimes for as good as a whole minute, which I find quite annoying.

So the question is: does there exist any way to disable this automatic update mechanism? It would be best if I can manually update Python interpreter and the packages only if I want to.

1

5 Answers 5

1

Open PyCharm.

Go to "File" -> "Settings" (or "PyCharm" -> "Preferences" on macOS).

In the Settings/Preferences dialog, navigate to "Project: <your_project_name>" -> "Python Interpreter."

In the Python Interpreter settings, uncheck the option that says something like "Automatically check for available packages."

Click "OK" to save the changes.

Sign up to request clarification or add additional context in comments.

Comments

-3

From the PyCharm help page:

You can manage PyCharm updates on the Updates page under Appearance and Behavior | System Settings in the Settings/Preferences dialog Ctrl+Alt+S: Disable automatic update checks

In the Settings/Preferences dialog Ctrl+Alt+S, select Appearance and Behavior | System Settings | Updates.

Clear the Automatically check updates for checkbox.

Comments

-3

From https://www.jetbrains.com/help/pycharm/update.html#standalone:

Disable automatic update checks In the Settings/Preferences dialog Ctrl+Alt+S, select Appearance and Behavior | System Settings | Updates.

Clear the Automatically check updates for checkbox.

Comments

-4

You can manually update the package and change the interpreter settings by following either of the two ways:-

Method-1: you have to go to the edit configuration button situated at the topmost right screen of your pycharm window and after clicking on it select the interpreter you want from the list.

Method-2: Go to system settings (in Windows) or system preferences (in mac) and then select a project interpreter from the dropdown menu. From there, you can change interpreter settings as well as install packages from the '+' sign.

Comments

-4

From the official PyCharm help forum:

You need to update the cofiguration file at /<your pycharm folder/config/options/updates.xml> with the following code

<application>
 <component name="UpdatesConfigurable">
   <option name="CHECK_NEEDED" value="false" />
 </component>
</application>

1 Comment

This is about checking updates of PyCharm itself. This has nothing to do with updating the packages in the interpreter.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.