安装 oh-my-zsh 时出现错误,执行以下操作:
wget --no-check-certificate https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
但最后我得到:
/usr/bin/env: zsh: No such file or directory
sh: source: not found
我究竟做错了什么 ?
机器:Ubuntu 10.10
安装 oh-my-zsh 时出现错误,执行以下操作:
wget --no-check-certificate https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
但最后我得到:
/usr/bin/env: zsh: No such file or directory
sh: source: not found
我究竟做错了什么 ?
机器:Ubuntu 10.10
对于在 ubuntu 上使用 oh-my-zsh 可能有问题的其他人,这里是从这个要点中获取的解决方案:https ://gist.github.com/1498393
首先安装 zsh :
apt-get install zsh
然后使用 zsh 安装 oh-my-zsh :
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
然后你把你的shell改成zsh
chsh -s `which zsh`
然后确保重新启动终端会话,无需重新启动
您(可能)没有安装 zsh 。您应该sudo apt-get install zsh
在运行脚本之前运行。
如果您安装了 zsh,您应该执行以下操作:
sudo ln -s /bin/zsh4 /bin/zsh
这是因为 Ubuntu 在安装时不会这样做,所以你必须自己动手™。
无论如何,您应该更新到Ubuntu 12.04LTS Precise Pangolin,因为您的版本不再支持。