我在安装Torch7之前安装了Anaconda。 我在安装Torch7 using these instructions时没有遇到任何错误。
我正在运行OS 10.10.5
我的.bash_profile如下:
# added by Anaconda 2.3.0 installer
export PATH="/Users/myusername/anaconda/bin:$PATH"
export PATH="./Users/myusername/torch/install/bin/torch_activate:$PATH"
更新.bash_profile之后我跑了
$ source ~/.bash_profile
$ th
我得到......
-bash: th: command not found
有什么想法吗?我应该删除Anaconda并再次尝试安装吗?
答案 0 :(得分:3)
torch_activate
不是目录。它应该来源于你的shell。
尝试更新您的.bash_profile
以包含
source /Users/myusername/torch/install/bin/torch-activate