How to disable PyCharm from automatically updating Python interpreter on startup(如何禁用 PyCharm 在启动时自动更新 Python 解释器)
问题描述
PyCharm 似乎总是在启动时更新连接的 Python 解释器,并且在需要时扫描和更新所有包.对我来说,这意味着每当我打开 PyCharm 时,都会在后台运行更新进程,有时我不得不等待整整一分钟,我觉得这很烦人.
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.
所以问题是:有没有办法禁用这种自动更新机制?如果我可以手动更新 Python 解释器和软件包,那将是最好的只有在我想要的时候.
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.
推荐答案
您可以通过以下两种方式之一手动更新包和更改解释器设置:-
You can manually update the package and change the interpreter settings by following either of the two ways:-
方法 1:您必须转到位于 pycharm 窗口右上角屏幕的编辑配置按钮,然后单击它后从列表中选择您想要的解释器.
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.
方法 2:转到系统设置(在 Windows 中)或系统首选项(在 Mac 中),然后从下拉菜单中选择项目解释器.从那里,您可以更改解释器设置以及从+"号安装软件包.
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.
这篇关于如何禁用 PyCharm 在启动时自动更新 Python 解释器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何禁用 PyCharm 在启动时自动更新 Python 解释器
基础教程推荐
- 包装空间模型 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- 求两个直方图的卷积 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
