McAfee Endpoint 安全警报 "Insufficient system resources" 在 Python 中使用 cx_Oracle:
McAfee Endpoint security Alert "Insufficient system resources" using cx_Oracle in Python:
我在 Python 中使用 Cx_oracle 一段时间,但我最近无法在 Python 中导入 cx_oracle 并收到此错误:
ImportError: DLL load failed: Insufficient system resources exist to complete the requested service.
此外,我收到迈克菲安全警报,如下所示:
我重新安装了cx_oracle几次,但没有用。有什么建议吗?
最简单的答案是使用旧版本的 cx_Oracle
,使用以下命令:
pip uninstall cx_Oracle
pip install -Iv cx_Oracle=="enter the version number here"
原因是 McAfee 可能未与最新版本的 cx_Oracle 或任何其他 Python 模块集成。
还有其他几种解决方案,包括:
- 正在卸载 McAfee 或您拥有的任何防病毒软件
- 正在更新驱动程序
- 扫描磁盘驱动程序解决问题
- 修改注册表
我在 Python 中使用 Cx_oracle 一段时间,但我最近无法在 Python 中导入 cx_oracle 并收到此错误:
ImportError: DLL load failed: Insufficient system resources exist to complete the requested service.
此外,我收到迈克菲安全警报,如下所示:
我重新安装了cx_oracle几次,但没有用。有什么建议吗?
最简单的答案是使用旧版本的 cx_Oracle
,使用以下命令:
pip uninstall cx_Oracle
pip install -Iv cx_Oracle=="enter the version number here"
原因是 McAfee 可能未与最新版本的 cx_Oracle 或任何其他 Python 模块集成。
还有其他几种解决方案,包括:
- 正在卸载 McAfee 或您拥有的任何防病毒软件
- 正在更新驱动程序
- 扫描磁盘驱动程序解决问题
- 修改注册表