Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

subclipse: Unable to load default SVN Client

I am constantly getting this error when working with eclispe and the subclipse plugin:

Unable to load default SVN Client 

I have already installed both the SVNKit and the JavaHL provider, but it can't be found in the preferences:

enter image description here

I am using eclipse for win64bit

like image 336
clamp Avatar asked Apr 11 '11 11:04

clamp


People also ask

How do I know if subclipse is installed?

Look at Help -> About Eclipse IDE. This will tell which product and version thereof that you have installed.

How do I open subclipse in Eclipse?

Open Eclipse. In the Available Software dialog that opens, carefully type http://subclipse.tigris.org/update_1.8.x in the Work with: field and press Enter. Case matters, and NO spaces! After several seconds, three checkboxes will appear.

How do I download subclipse in Eclipse?

Installing Subclipse In Eclipse, go to "Help » Install New Software..." from the toolbar. We are currently running Subversion version 1.10. x, so you need to place the link http://subclipse.tigris.org/update_1.10.x in the "Work with" field and press Enter. Select "Subclipse" and click the "Next" button.


2 Answers

I had this problem after installing the latest eclipse and installing subclipse from the marketplace. To resolve you can follow these steps:

  1. Click Help >> Install New Software...
  2. Set Work with: Subclipse 1.10.x Update Site - http://subclipse.tigris.org/update_1.10.x
  3. Ensure Hide items that are already installed is checked.
  4. Click Select All.
  5. Click Next.
  6. Complete the remainder of the installation as usual.
like image 118
Edd Avatar answered Sep 29 '22 21:09

Edd


For ubuntu 12.04 amd64

sudo apt-get install libsvn-java 

add this to eclipse.ini after -vmargs:

-vmargs -Djava.library.path=/usr/lib/jni:/usr/lib/x86_64-linux-gnu/jni ... 
like image 31
Somatik Avatar answered Sep 29 '22 22:09

Somatik