Reputation: 2646
I'd like to use Aptana Studio for Rails development under Windows. I currently have different dev tools & ide's up and running (like git/ruby/jdk) and I'd like to install Aptana Studio as well but I can't. After downloading and running installer, it starts properly and after I choose destination dir, it starts downloading prequisities. I have several problems with it:
I am using Win7 x64, ruby 1.9.3p-545, msysgit 1.8.4, jdk 1.7. Does anyone had simmilar problem and succesfully installed this ide?
Upvotes: 54
Views: 119324
Reputation: 4205
Simply, create the folder you want to extract Aptana Studio to, and then use this command:
Aptana_Studio_3_Setup_3.6.1.exe /extract:"folder"
Upvotes: 2
Reputation: 1824
I had the same problem. I solved by installing NodeJS from this link: http://go.aptana.com/installer_nodejs_windows and Git latest version from https://git-scm.com/downloads.
Finally I was able to run the Aptana installer with no problems.
Upvotes: 58
Reputation: 36348
Installing Aptana Studio in passive mode bypasses the installation of Git for Windows and Node.js.
Aptana_Studio_3_Setup_3.6.1 /passive /norestart
(I am unsure whether Aptana Studio will work properly without those "prerequisites", but it appears to.)
If you want a global installation in a specific directory, the command line is
Aptana_Studio_3_Setup_3.6.1.exe /passive /norestart ALLUSERS=1 APPDIR=c:\apps\AptanaStudio
Upvotes: 76
Reputation: 1
Had the same error initially. so.. pre-installed git and node.js and later installed Aptana, which installed perfectly. Rajeeva.
Upvotes: 0
Reputation: 483
Most of us will run into this problem. This can be solved by installing NodeJS from http://go.aptana.com/installer_nodejs_windows. My Aptana installation installed the GIT automatically but if you still find trouble then I would suggest to install the GIT latest version yourself and rerun the Aptana installation.
Upvotes: 17
Reputation: 211
I have some issue, the fix is:
greetings!
Upvotes: 21
Reputation: 21
Right click the installer and choose "Run as administrator". I suspect it needs administrator account to download and install Node JS during installation.
Upvotes: -1
Reputation: 1
You have to use portable git not installer.Extract the folder to Program Files and rename the folder name from PortableGit to Git.
Upvotes: 0
Reputation: 11
I had a problem installing Aptana 3.6.1 on my windows machine. It always shows "fail to locate node.js installer missing windows msi" No matter how many times I tried to.
Here is how I solved the problem:
Install Git: This link is for windows and will automatically have the file ready to dowload https://git-scm.com/download/win
Instead of installing the latest version, I chose a little earlier version (also 3) but it's 3.2.2 instead of 3.61 (the current one on the Aptana page) : http://www.filehorse.com/download-aptana/11489/
Upvotes: 0
Reputation: 31
If your issue is related to a failed Windows install, and you are receiving a message related to installer _jsnode_windows.msi CRC error
:
Aptana Studio (Aptana Studio 3, build: 3.6.1.201410201044) currently requires
Nodejs 0.5.XX-0.11.xx
Even though the current release of nodejs seems to be 5.X.X
. Apparently there will be a new release in Nov 2015 that corrects this defect.
Pre-installing x0.10.36-x64
allowed me to proceed with a successful install. If version numbers can be believed, this seems to be an ancient release of nodejs
, but hey - I saw a very impressive demo of Aptana Studio
and really wanted to install it. :-)
I also pre-installed GIT
for windows, but I'm not sure if that was necessary or not.
Upvotes: 3
Reputation: 9907
Install NODE.JS on windows before installing aptana
Try the following link http://blueashes.com/2011/web-development/install-nodejs-on-windows/
Upvotes: 4
Reputation: 1
I had this issue and it was because of limited internet connection to source. You can use a proxy (VPN) but the better solution is download manually NodeJs from the source https://nodejs.org/download/ and Git, too.
after installation manually, aptana will check if they installed or not.
Upvotes: 0
Reputation: 305
It seems having msysgit (Git for Windows) installed is causing the problem.
In most cases you'll have a pretty recent version of Git for Windows installed. Cited from https://code.google.com/p/tortoisegit/:
There was a security issue in Git, see here. Git for Windows < 1.9.5 is affected - so you should update, TortoiseGit itself is not affected (using the default configuration; only if libgit2 is manually enabled for checkout/fetching). TortoiseGit 1.8.13.0 includes all fixes.
But it seems Aptana Studio Installer won't accept any pre-installed version of Git for Windows!
What you need to do:
That's it !!!
Upvotes: 1
Reputation: 555
I'm using Win 8.1, and have installed Aptana easily, and use for PHP programming without any issues. And just experimented with Ruble enhancement to the UI. All seems to work just fine.
3.6.0.201407100658
Upvotes: -1