我已按照以下方法在我的机器(Mac)中安装Torch. http://torch.ch/docs/getting-started.html#_ 完成安装后,我输入: $luarocks安装图片 或$luarocks lis 或$th 为了加载th或在lua包上进行更新.它说“找不到命
http://torch.ch/docs/getting-started.html#_
完成安装后,我输入:
$luarocks安装图片
或$luarocks lis
或$th
为了加载th或在lua包上进行更新.它说“找不到命令”.你知道如何解决这个问题吗?
如果您使用bash终端在Mac上,请确保已将/ Users / you / torch / install / bin永久添加到PATH.去做这个:
>通过运行以下命令在终端中导航到根目录:
$cd
>使用您选择的文本编辑器(emacs,vim等)打开.bash_profile文件进行编辑.例如:
$emacs .bash_profile
>将以下行添加到文件末尾(将“你”替换为Mac用户名):
PATH=$PATH\:/Users/you/torch/install/bin ; export PATH
>保存并退出文本编辑器
>通过运行来获取更改:
$source .bash_profile
>检查您的PATH是否已更新(在返回的字符串中查找/ Users / you / torch / install / bin):
$echo $PATH
>要确保它已永久更改,请完全退出终端,打开它并再次运行echo $PATH
>现在尝试,它应该运行火炬!
有关PATH的更多帮助:
https://kb.iu.edu/d/acar
火炬安装(至少对我而言)增加了线路. / Users / jb / torch / install / bin / torch-activate到我的.profile文件,而不是.bash_profile.我尝试将确切的行添加到.bash_profile但它没有用,所以基于这里的建议,我摆脱了尾随目录等.