web-dev-qa-db-ja.com

MacOS Catalina Betaを使用しているため、このターミナルではカカオポッドを実行またはインストールできませんか?

ココアポッドのインストールを要求するGitHubプログラムの1つをインストールすることに非常に興味があります。 macOSの通常バージョンでは、端末に問題がないように見えます。 macOSカタリナベータを使用していたため、ターミナルにカカオポッドをインストールできないという問題がありますか?

私はPodfileからポッド 'Card'をインストールしましたが、その後Podfileは終了します。端末に「ポッドインストール」というテキストを入力します。その後、唯一のエラーが表示されます。エラーは言った

-bash: /usr/local/bin/pod: / 
System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/bin/Ruby: bad interpreter: No such file or directory". 

私がMacOSカタリナベータ版を使用しているときに、これらの問題を修正する方法を誰かが知っていますか?

53
    [![If cannot install new version cocoapods, example below:
    1. Please remove Command line tools
    Sudo rm -rf /Library/Developer/CommandLineTools
    2. Install new Command line tools version
    Sudo xcode-select --install
    3. after installing run below command
    open /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg][1]][1]


  [1]: https://i.stack.imgur.com/BOB6Z.png
0
siddhant

カタリナでこの問題がありました。解決するには、次の手順を実行する必要があります。

  1. XCodeコマンドラインツールをインストールします。この依存関係を解決するには、HomeBrewをインストールすることをお勧めします:/usr/bin/Ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

  2. 次のコマンドを実行して、ココアポッドを再インストールします:Sudo gem install -n /usr/local/bin cocoapods

0
Ângelo Polotto