web-dev-qa-db-ja.com

bash curlコマンドはOS Xでは見つかりません。どこで見つけることができますか?

自分が何に夢中になっているかわからない。プログラミングは初めてで、独学で学ぼうとしている。 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コマンドが見つかりません

24
user2821160

別の方法として、wgetを使用できます。

Ruby -e "$(wget -qO - 'https://raw.github.com/mxcl/homebrew/go')"
2
konsolebox

次の方法でcurlをインストールします。

Sudo apt-get install curl
65
Chip