无法在itorch笔记本中导入任何东西
Unable to import anything in itorch notebook
我在 Ubuntu 16.04 上安装了 IPython notebook、torch 和 Itorch。
我使用以下方式打开 iTorch 笔记本:
itorch notebook
我能用的notebook:
require 'nn'
nn.Sequential()
nn.SpatialConvolution(1, 6, 5, 5)
基本可以使用torch的功能。
但是当我将任何 python 库导入为 numpy 或 pandas:
import numpy as np
我收到以下错误:
[string "import numpy as np..."]:1: syntax error near 'numpy'
即使我在终端中 运行 itorch 我也得到同样的错误。
请帮助。
我在 Ubuntu 16.04 上安装了 IPython notebook、torch 和 Itorch。 我使用以下方式打开 iTorch 笔记本:
itorch notebook
我能用的notebook:
require 'nn'
nn.Sequential()
nn.SpatialConvolution(1, 6, 5, 5)
基本可以使用torch的功能。 但是当我将任何 python 库导入为 numpy 或 pandas:
import numpy as np
我收到以下错误:
[string "import numpy as np..."]:1: syntax error near 'numpy'
即使我在终端中 运行 itorch 我也得到同样的错误。 请帮助。