How to Download Google Code from SVN on Mac

I want to download the Google API client Objective-C on my Mac (OSX 10.8). The following is indicated on this page :

Non-members can view a read-only anonymous working copy via HTTP. svn checkout http://google-api-objectivec-client.googlecode.com/svn/trunk/ google-api-objectivec-client-read-only

So I tried to run this line in Terminal, and all I had was:

- bash: svn: command not found

Can someone tell me what I am doing wrong? SVN should already be installed with OSX, no? Or do I need to install it first? Do SVN commands execute in any directory?

Any help is greatly appreciated. Thanks guys.

+6
source share
2 answers

I'm sure you need Apple's command line tools. You can get them by installing Xcode from the Mac App Store or by downloading the command line tools from here .

+8
source

How to install command line tools:

Xcode / Behaviors / Edit behaviors ... / Download / Command Line Tools / Installation

+4
source

Source: https://habr.com/ru/post/923844/


All Articles