seleniumをインストールした後、Homebrewを介してchromedriverをインストールしようとしましたが、以下のようにエラーが発生してしまいました。
python
1Error: 2 homebrew-core is a shallow clone. 3To `brew update`, first run: 4 git -C /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core fetch --unshallow 5This command may take a few minutes to run due to the large size of the repository. 6This restriction has been made on GitHub's request because updating shallow 7clones is an extremely expensive operation due to the tree layout and traffic of 8Homebrew/homebrew-core and Homebrew/homebrew-cask. We don't do this for you 9automatically to avoid repeatedly performing an expensive unshallow operation in 10CI systems (which should instead be fixed to not use shallow clones). Sorry for 11the inconvenience! 12==> Tapping homebrew/cask
そこで、
python
1To `brew update`, first run: 2 git -C /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core fetch --unshallow
とあることから、
python
1git -C /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core fetch --unshallow
を実行してみましたが、
python
1 File "/var/folders/jr/2p724fh51wv7fxmql7kxyb1h0000gn/T/ipykernel_78014/451855379.py", line 1 2 git -C /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core fetch --unshallow 3 ^ 4SyntaxError: invalid syntax
というエラーが出ました。
そこで、
/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core
の部分を、ダブルコーテーションやシングルコーテンションをつけて、実行してみましたが両方ともエラーが出ました。
ダブルコーテーションの方は以下のエラーが出ました。
python
1 File "/var/folders/jr/2p724fh51wv7fxmql7kxyb1h0000gn/T/ipykernel_78014/547135465.py", line 1 2 git -C "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core" fetch --unshallow 3 ^ 4SyntaxError: invalid syntax
シングルコーテーションの方は以下のエラーが出ました。
python
1 File "/var/folders/jr/2p724fh51wv7fxmql7kxyb1h0000gn/T/ipykernel_78014/3092156648.py", line 1 2 git -C '/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core' fetch --unshallow 3 ^ 4SyntaxError: invalid syntax
【質問】
他にはどのような解決策がありますか?
> git -C /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core fetch --unshallow
をターミナルで実行してみました
をやった時のスクショを、質問を編集して追加した方がいいと思います
回答2件
あなたの回答
tips
プレビュー