Download Subversion For Mac



  1. Download Subversion Windows
  2. Svn Client For Mac

To install the Subversion command line client on a macOS, follow these steps: Download the appropriate macOS binary package for your macOS version (macOS 10.8 is the latest) from Wandisco. Install the file and follow the steps. Win / Mac / Linux Virtual Machines. About Bitnami Subversion Stack The Bitnami Subversion Stack provides a one-click install solution for Subversion. Download installers and virtual machines, or run your own subversion server in the cloud. Subversion (SVN) is an open source SCM that enjoys widespread adoption in organizations around the world. Apache ® Subversion ® 'Enterprise-class centralized version control for the masses' Welcome to subversion.apache.org, the online home of the Apache ® Subversion ® software project. Subversion is an open source version control system. Founded in 2000 by CollabNet, Inc., the Subversion project and software have seen incredible success over the past decade. Download SVN client for Mac OS. Sources are closed.

I am trying to install Subversion and GIT on my mac because I want to use it with limejs. I believe I’ve installed it correctly but I keep getting this error in the terminal: -bash: svn: command not found
this happens with both SVN and GIT, is there something I’m missing or that I’m doing wrong?

Observing members: 0 Composing members: 0

11 Answers

It could be that they aren’t in your unix path. See this article for adding something to your unix path.

I believe you were right, I added that line of code to my terminal and now it gave me this : >

do I need to write something else after that?

Thanks!

@gorillapaws I believe you were right, I added that line of code to my terminal and now it gave me this : >
do I need to write something else after that?
Thanks!

@polycinco how are you installing them? homebrew? macports?

An aside: I’ve been thinking about playing around with html5/canvas stuff. What makes limejs more compelling than any of the other frameworks out there?

Set your path to Unix only then they will install.

@phaedryx I wasn’t using either of those or anything else, I enrolled in a course to make HTML5 games which requires Limejs GIT and subversion. I couldn’t tell you what the difference is between Limejs and others because I’m new to all of these and that’s why it’s being kind of hard to even install those things /:

@abundantlife I believe I did that but would you mind guiding me through it?

Mac

@polycinco I personally like homebrew because it makes it really easy to install things (e.g. it automatically downloads and installs programs and creates symlinks so that they’ll be in your path).

Download Subversion Windows

You can read about it on their website, but the commands are pretty simple. Open up “Terminal” (you’ll need to type/copy the things I’ve bolded to the prompt).

1. Install homebrew:
ruby <(curl -fsSkL raw.github.com/mxcl/homebrew/go)

Download subversion windows

2. install subversion:
brew install subversion

3. install git:
brew install git

4. switch to your home directory:
cd

5. check out the limejs repository:
git clone git://github.com/digitalfruit/limejs.git

6. switch to the limejs directory you just made:
cd limejs

7. initialize:
bin/lime.py init

8. Create a new project:
bin/lime.py create helloworld

9. Open up ~/limejs/helloworld/helloworld.html in your browser and take a look

@phaedryx Thank you so much! This is really helpful. I started with number 1 and got this on Terminal: Last login: Tue Sep 11 10:07:49 on ttys000
Cinthyas-MacBook-Pro:~ polycinco$ ruby <(curl -fsSkL raw.github.com/mxcl/homebrew/go)
> This script will install:
/usr/local/bin/brew
/usr/local/Library/...
/usr/local/share/man/man1/brew.1

Press enter to continue
> Downloading and Installing Homebrew…
/dev/fd/63:132:in `chdir’: Permission denied – /usr/local (Errno::EACCES)
from /dev/fd/63:132
Cinthyas-MacBook-Pro:~ polycinco$

Why does it say permission denied?

Download subversion windows

Thanks again!

I means that the user ‘polycinco’ on your system doesn’t have permissions to the ’/usr/local’ directory. You can see what the permissions are by typing:
ls -al /usr/|grep local
(it will give you the permissions string, a number, the name of the user who owns the directory, the name of the group who owns the directory, and some other info)

Svn client for mac

On my system I added my user to the ‘admin’ group, for you it would be:
sudo dseditgroup -o edit -a polycinco -t user admin

(it will probably prompt you for a password)

and make ’/usr/local’ group-writeable:
sudo chmod g+w /usr/local

and try going through my previous steps again.
————————————————————————————————-
If that doesn’t work for you, you can try installing it as the superuser:
sudo ruby <(curl -fsSkL raw.github.com/mxcl/homebrew/go)
————————————————————————————————-
Or if all else fails, open permissions to /usr/local to everything before installing:
sudo chmod 777 /usr/local

but make sure to change it back when you’re done:
sudo chmod 755 /usr/local

Svn Client For Mac

@phaedryx Thank you so much! I will try this and let you know what happens, hopefully this will fix it!

Answer this question

This question is in the General Section. Responses must be helpful and on-topic.