自分が何に夢中になっているかわからない。プログラミングは初めてで、独学で学ぼうとしている。 Ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)
を使用してhomebrewをインストールしようとしていますが、結果は"-bash:curl:command not found"です。
私はグーグルを検索してきましたが、私を助けるものを見つけることができないようです。 which curl
と入力すると、ターミナルを開いたようにターミナルの次の行に移動します...
コマンドラインツールをインストールした状態でxcodeをインストールしました。何か問題が発生した場合に備えて、ダウンロードして再インストールしました。重要ではないが、homebrewをインストールしようとする理由は、dnscryptに必要なlibsodiumに必要だからです。
curl-config
と入力すると、OPTIONに使用可能な値が含まれます。
--built-shared says 'yes' if libcurl was built shared
--ca ca bundle install path
--cc compiler
--cflags pre-processor and compiler flags
--checkfor [version] check for (lib)curl of the specified version
--configure the arguments given to configure when building curl
--features newline separated list of enabled features
--help display this help and exit
--libs library linking information
--prefix curl install prefix
--protocols newline separated list of enabled protocols
--static-libs static libcurl library linking information
--version output version information
--vernum output the version information as a number (hexadecimal)
次に、curl --version
などのいずれかを試してみますが、同じcurlコマンドが見つかりません
別の方法として、wget
を使用できます。
Ruby -e "$(wget -qO - 'https://raw.github.com/mxcl/homebrew/go')"
次の方法でcurlをインストールします。
Sudo apt-get install curl