Failed to use svn command from terminal in Mac OS 10.8

Command

SVN teams worked perfectly in the terminal. I uninstalled and installed the latest version of my svnclient. from now on I cannot access svn commands from the terminal in my mac. Below is the error message that I see in the terminal

dyld: library not loaded: /opt/local/lib/libssl.1.0.0.dylib
Link from: / usr / local / bin / svn Reason: image not found Trace / BPT trap: 5

I am using Mac OS 10.8.2

Please help me fix this.

+4
source share
1 answer

It looks like your local copy of "svn" (installed in / usr / local / bin) is dependent on a library that no longer exists in / opt / local / lib (which may have disappeared upon removal and reinstalled the latest version of your client svn).

On my own machine, " svn " was installed in the " /usr/bin " /usr/bin using the Xcode command-line tools that you can download directly from Apple right here ( see the link "Search for additional developer tools?" ), Or you can install the tools command line directly from the Xcode settings (see the "Downloads" tab, the "Components" section will appear). After installing the command line tools, you can "rm" copy svn to " /usr/local/bin ".

+9
source

All Articles