如何修复'/ bin / bash:th:找不到命令',在Google合作实验室中出现火炬错误

问题描述 投票:1回答:1

[请,我需要在colab中运行!th luafile.lua。在this link之后安装割炬后,我运行!th,但出现此错误:

/bin/bash: th: command not found

I ls/root/torch/install/bin。没有th*存在:

json2lua*  lua2json*  luajit*  luarocks*  luarocks-admin*  mdcat*

请任何人可以帮助我吗?

lua torch google-colaboratory
1个回答
0
投票

困难但容易

克隆Torch存储库(与CUDA 10配合使用。

!git clone https://github.com/nagadomi/distro.git torch --recursive

安装割炬。

import os
os.chdir('./torch/')
!bash install-deps
!./install.sh

激活火炬。

!. ./install/bin/torch-activate

确保安装正常。

!./install/bin/th

结果:

  ______             __   |  Torch7 
 /_  __/__  ________/ /   |  Scientific computing for Lua. 
  / / / _ \/ __/ __/ _ \  |  Type ? for help 
 /_/  \___/_/  \__/_//_/  |  https://github.com/torch 
                          |  http://torch.ch 

th> ^C
© www.soinside.com 2019 - 2024. All rights reserved.