Python 口译员经常在重新启动 eclipse 时重置
Python interpreters frequently reset on restarting eclipse
我最近在我的 MacBook 上更改了用户名并删除了之前安装的 miniconda 以安装新的 anaconda。展望未来,我从 Eclipse > Preferences > PyDev > Python Interpreter
中删除了基于 miniconda (py36)
的 python 解释器的先前定义,以添加一个新的基于 anaconda 的 python 解释器。这些更改对于当前会话或 eclipse 的快速重启工作正常,但是,如果我在一天左右后重新打开 eclipse,解释器设置将切换回旧设置。我需要删除旧的解释器并重新添加新的解释器。以下是我在 eclipse 重启时收到的错误。
错误:发生内部错误:“列出 py36 (/Users/Viswanath/miniconda3/bin/python)”的依赖项。 java.io.IOException: 无法 运行 编程“/Users/Viswanath/miniconda3/bin/python”:错误=2,没有那个文件或目录
过去曾问过类似问题here. As mentioned in the answer to that question and here, I also believe that the root cause could be preference recording by a plugin such as Oomph. However, the documentation page for Oomph 对删除首选项录音或预设的步骤没有帮助。如下图所示,我取消选中 Eclipse > Preferences > Oomph > Setup Tasks > Preference Recorder & Preference Synchronizer
中的选项。这些都没有帮助。任何有关从 Oomph 中删除录制的首选项或预设的指导的帮助都将不胜感激。
其他详细信息:
Python Version: 3.7.8
Eclipse Version: 2020-09 (4.17.0)
PyDev Version: 8.0.1
Device: MacBook Pro
OS: macOS Big Sur 11.0.1
这里通常的罪魁祸首是您有一些插件,例如 Oomph,它正在记录首选项(因此,它将您的配置保存到 Python 解释器,当您重新启动 Eclipse 时,它会恢复这些配置,因此恢复旧的解释器配置)。
参见:
我认为诀窍是从导航 -> 打开设置 -> 用户 -> 名为“用户偏好”的组中删除记录的首选项。
我最近在我的 MacBook 上更改了用户名并删除了之前安装的 miniconda 以安装新的 anaconda。展望未来,我从 Eclipse > Preferences > PyDev > Python Interpreter
中删除了基于 miniconda (py36)
的 python 解释器的先前定义,以添加一个新的基于 anaconda 的 python 解释器。这些更改对于当前会话或 eclipse 的快速重启工作正常,但是,如果我在一天左右后重新打开 eclipse,解释器设置将切换回旧设置。我需要删除旧的解释器并重新添加新的解释器。以下是我在 eclipse 重启时收到的错误。
错误:发生内部错误:“列出 py36 (/Users/Viswanath/miniconda3/bin/python)”的依赖项。 java.io.IOException: 无法 运行 编程“/Users/Viswanath/miniconda3/bin/python”:错误=2,没有那个文件或目录
过去曾问过类似问题here. As mentioned in the answer to that question and here, I also believe that the root cause could be preference recording by a plugin such as Oomph. However, the documentation page for Oomph 对删除首选项录音或预设的步骤没有帮助。如下图所示,我取消选中 Eclipse > Preferences > Oomph > Setup Tasks > Preference Recorder & Preference Synchronizer
中的选项。这些都没有帮助。任何有关从 Oomph 中删除录制的首选项或预设的指导的帮助都将不胜感激。
Python Version: 3.7.8
Eclipse Version: 2020-09 (4.17.0)
PyDev Version: 8.0.1
Device: MacBook Pro
OS: macOS Big Sur 11.0.1
这里通常的罪魁祸首是您有一些插件,例如 Oomph,它正在记录首选项(因此,它将您的配置保存到 Python 解释器,当您重新启动 Eclipse 时,它会恢复这些配置,因此恢复旧的解释器配置)。
参见:
我认为诀窍是从导航 -> 打开设置 -> 用户 -> 名为“用户偏好”的组中删除记录的首选项。