4

私のUbuntu 12.04 LTSでは、github oh-my-zshプロジェクトページにあるコマンドに従って、oh-my-zshをインストールしようとしていました。

wget --no-check-certificate https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh

しかし、次のエラーが発生します。sudo で試してみましたが、同じ結果でした。

Looking for an existing zsh config... Found ~/.zshrc. [0;32]Backing up to ~/.zshrc.pre-oh-my-zsh Using the Oh My Zsh template file and adding it to ~/.zshrc Copying your current PATH and adding it to the end of ~/.zshrc for you. Time to change your default shell to zsh! Password: chsh: PAM authentication failed __ __
__ / /_ _ __ __ __ __ _/ /_
/ __ / __ \ / __ `__ / / / / /_ / / / _ \ / // / / / / / / / / / / // / / /( ) / / / _// // // // //_, / //// //
/
_
/

....is now installed. sh: 39: source: not found

助言がありますか?ありがとう。

4

2 に答える 2

4

エラーsh: 39: source: not foundは問題の一部にすぎません。投稿した出力には、デフォルトのシェルの変更に関連する問題も示されています: Password: chsh: PAM authentication failed.

この号でも同じ問題が報告されています。

oh-my-zsh github ページ(またはこちら) で提供されている手動インストール手順に従う必要があります。

于 2012-11-18T15:19:21.160 に答える
0

この問題は、ohmyz.shスクリプトを手動で実行することで解決されます。

rm -rf ~/.oh-my-zsh/
curl -L http://install.ohmyz.sh > install.sh
sh install.sh

ソース

于 2015-11-02T17:21:30.470 に答える