gurobipy - 模块 'gurobipy' 中没有名称 'GRB'
gurobipy - No name 'GRB' in module 'gurobipy'
在 Windows 上 VSCode 上使用 Gurobi 10.
我有以下代码
import gurobipy as gp
from gurobipy import GRB
有趣的是,当我将其放入 .py
文件时,出现错误
No name 'GRB' in module 'gurobipy'
但是在 Jupyter notebook 上做同样的事情不会产生错误。
我按照此处的说明使用 pip 安装了 gurobipy:https://support.gurobi.com/hc/en-us/articles/360044290292-Installing-Gurobi-for-Python
此外,我在 Jupyter Notebook 和系统(由 运行 python --version
检查)和 pip freeze
显示已安装 gurobipy。
我找到了解决方法。
基本上只是禁用 pylint 并替换为 pep8。
媒体 link 对于 pep8 已过时,请改用 VS Code doesn't recognize pep8
在 Windows 上 VSCode 上使用 Gurobi 10.
我有以下代码
import gurobipy as gp
from gurobipy import GRB
有趣的是,当我将其放入 .py
文件时,出现错误
No name 'GRB' in module 'gurobipy'
但是在 Jupyter notebook 上做同样的事情不会产生错误。 我按照此处的说明使用 pip 安装了 gurobipy:https://support.gurobi.com/hc/en-us/articles/360044290292-Installing-Gurobi-for-Python
此外,我在 Jupyter Notebook 和系统(由 运行 python --version
检查)和 pip freeze
显示已安装 gurobipy。
我找到了解决方法。
基本上只是禁用 pylint 并替换为 pep8。
媒体 link 对于 pep8 已过时,请改用 VS Code doesn't recognize pep8