Sublime 代码编译

2017-08-19  本文已影响28人  00e6a8fd618f

编辑:
Sublime Text 2
Command + B 执行文件
执行后产生的下方反馈信息窗口通过ESC 关闭

部分情况下 Sublime 内 Command + B 执行代码会报错,或者出现部分包不能成功调用。
比如在调用 Docplex 过程中就遇到了该问题,但在 Terminal 中运行就能够正常调用。

Traceback (most recent call last):
  File "/Users/fengxuan/Desktop/code/CPlex/transportation.py", line 10, in <module>
    from docplex.mp.model import Model
ImportError: No module named docplex.mp.model

运行:
Terminal

Last login: Tue Aug 15 19:57:30 on ttys000
MacBook-Pro:~ fengxuan$ cd Desktop/code/CPlex/ #定位至文件夹
MacBook-Pro:CPlex fengxuan$ python transportation.py #python + 需要执行的 .py 文件
Model: transportation
 - number of variables: 3
   - binary=0, integer=0, continuous=3
 - number of constraints: 0
   - linear=0
 - parameters: defaults
Traceback (most recent call last):
  File "transportation.py", line 25, in <module>
    tm.minimize(tm.sum(x[i, j]*costs.get(i, j), 0))
TypeError: sum() takes exactly 2 arguments (3 given)
MacBook-Pro:CPlex fengxuan$ 

Sublime �

上一篇下一篇

猜你喜欢

热点阅读