I'm atttempting to update fastlane to the newest version running:
sudo gem install fastlane -v 2.162.0
And it's erroring out with
ERROR: While executing gem ... (Gem::DependencyResolutionError)
conflicting dependencies faraday (~> 0.12) and faraday (~> 1.0)
Activated faraday-1.0.0
which does not match conflicting dependency (~> 0.12)
Conflicting dependency chains:
fastlane (= 2.162.0), 2.162.0 activated, depends on
faraday (~> 1.0), 1.0.0 activated
versus:
fastlane (= 2.162.0), 2.162.0 activated, depends on
google-api-client (>= 0.37.0, < 0.39.0), 0.37.0 activated, depends on
googleauth (~> 0.9), 0.9.0 activated, depends on
faraday (~> 0.12)
Gems matching faraday (~> 0.12):
faraday-0.17.3
When I run
sudo gem list
It shows:
...
faraday (1.0.0, 0.17.3)
...
google-api-client (0.38.0)
...
googleauth (0.9.0)
...
Why is it saying google-api-client 0.37.0 activated if I uninstalled that version and only have 0.38.0 installed?