我想将 CPLEX 与 Python 结合使用。我添加了路径
C:\Program Files\IBM\ILOG\CPLEX_Studio_Community129\cplex\python\3.7\x64_win64
到系统但是
import cplex
它不工作。
它只有在我明确地在程序中添加路径时才有效,即:
import sys sys.path.append('C:/Program Files/IBM/ILOG/CPLEX_Studio_Community129/cplex/python/3.7/x64_win64') import cplex
您知道为什么将路径直接添加到系统变量不起作用吗?
米琪卡哇伊
相关分类