Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable PyCharm from automatically updating Python interpreter on startup

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.

like image 467
Vim Avatar asked Oct 11 '17 15:10

Vim


People also ask

How do I change the interpreter in PyCharm?

Change the Python interpreter in the project settingsPress Ctrl+Alt+S to open the IDE settings and select Project <project name> | Python Interpreter. Expand the list of the available interpreters and click the Show All link. Select the target interpreter.

Why is Python interpreter not showing in PyCharm?

Edit: If there is no Python interpreter in drop-down menu, you should click the gear icon that on the right of the drop-down menu --> add --> select an interpreter . Show activity on this post. I got the same issue when i newly installed pycharm in my windows 10 machine. install this solved my problem.

What version of Python do I have PyCharm?

It's in File->Settings->project interpreter in newer versions. And in even newer (eg. 4.5. 4 and up) it's in File -> Settings -> Project: {your_project_name} -> Project Interpreter .


2 Answers

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.

like image 85
Ansh Avatar answered Sep 24 '22 16:09

Ansh


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.

like image 25
Bluebot Avatar answered Sep 21 '22 16:09

Bluebot