我正在运行一个主题建模项目,我需要在一个更大的数据集(一个2GB的xml文件)上运行它。该文件不会上传到Google驱动器,我决定尝试在计算机上运行代码,因为我也需要更快地运行它。我决定在计算机上安装Jupyter,并试图了解如何在本地运行时环境中使用GPU,我在这里找到了另一个来源,他们在此提供了来自google的有关如何连接至本地运行时环境的教程:
How to make Jupyter Notebook to run on GPU?
但是,那里的第一行代码给了我一个语法错误!
!pip install jupyter_http_over_ws
jupyter serverextension enable --py jupyter_http_over_ws
File "<ipython-input-2-77e87048a5d2>", line 2
jupyter serverextension enable --py jupyter_http_over_ws
^
SyntaxError: invalid syntax
我不太了解python代码,我只是想让这个东西工作。我不知道如何解决这些语法错误。我也尝试运行其他代码行,但是所有这些代码都有语法错误。我尝试将该代码粘贴到Google colab上的原始colab文件以及jupyter上的本地副本上,这将无法正常工作。
答案 0 :(得分:0)
第一行可以在终端或python shell中运行。
但是,第二个shell将在终端上运行,为此,您当然需要在本地系统中安装jupyter。
$ jupyter serverextension enable --py jupyter_http_over_ws
我自己遇到了这个问题,却没有找到答案。上面为我做了把戏!