Unable to install jQuerybundle for eclipse aptana studio 3 plugin

I installed the aptana studio 3 plugin for eclipse. But I can not install jQuerybundle.

When I select Command-> Bundel Developemnt-> Install Bundel-> jQuery, a message is displayed as below:

****** ~/Aptana Rubles $ git clone git://github.com/aptana/javascript-jquery.ruble.git Cloning into javascript-jquery.ruble... github.com[0: 207.97.227.239]: errno=No such file or directory fatal: unable to connect a socket (No such file or directory) 
+8
jquery eclipse aptana bundle
source share
2 answers

Got this by manually copying the files. Maybe you can try this

1) Download the zip from https://github.com/aptana/javascript-jquery.ruble/downloads

2) Go to the folder C: \ Documents and Settings \ "your_username" \ Aptana Rubles and unzip the contents to this folder (32-bit version of Windows XP).

3) Restart eclipse

4) Create any web project. Right click. Assume → Project build path and check the box for jQuery 1.4.2 or jQuery 1.6.2 depending on the situation.

+8
source share

This worked for me because of the proxy.

Use these three commands to clone jQuery Ruble in Aptana Studio because of the proxy:

 $ git config --global http.proxy http://typeYourProxyHere:8080 $ git config --global https.proxy http://typeYourProxyHere:8080 $ git clone https://github.com/aptana/javascript-jquery.ruble.git 

From: http://aptanastudio.tenderapp.com/discussions/problems/3340-git-problems-behind-firewall-cant-install-bundles

0
source share

All Articles