node.js 无法正确获取 intaller_nodejs_windows.msi 文件:CRC 错误

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/33398769/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-02 19:26:23  来源:igfitidea点击:

Failed to correctly acquire intaller_nodejs_windows.msi file: CRC error

node.jsaptana

提问by Kalyan Dey

I am getting an error:

我收到一个错误:

Failed to correctly acquire intaller_nodejs_windows.msi file: CRC error.

When trying to install Aptana_Studio_3_Setup_3.6.1.I also installed node-v4.2.1-x64.msi(restarted the system) and Git-2.6.2-64-bit, but still not able to install and getting the above error. Please advise.

尝试安装时,Aptana_Studio_3_Setup_3.6.1.我也安装了node-v4.2.1-x64.msi(重新启动系统)和Git-2.6.2-64-bit,但仍然无法安装并出现上述错误。请指教。

enter image description here

在此处输入图片说明

回答by joshgoldeneagle

I wasn't able to locate installer_nodejs_windows.msi on my PC, so I downloaded it separately from here: http://go.aptana.com/installer_nodejs_windows

我无法在我的 PC 上找到 installer_nodejs_windows.msi,所以我从这里单独下载了它:http: //go.aptana.com/installer_nodejs_windows

After installing Node JS for Windows, I was able to successfully install Aptana.

在为 Windows 安装 Node JS 后,我能够成功安装 Aptana。

Note: Above link no longer seems to be working. Looks like you can download Node JS separately from here: https://nodejs.org/download/release/v0.10.13/

注意:上面的链接似乎不再有效。看起来你可以从这里单独下载 Node JS:https: //nodejs.org/download/release/v0.10.13/

回答by Ingo Muschenetz

The current version of Aptana requires a Node version between 0.8.X and 0.11.X. I recommend a 0.10.X version of Node.

当前版本的 Aptana 需要 0.8.X 和 0.11.X 之间的 Node 版本。我推荐一个 0.10.X 版本的 Node。

The next release (in November) will allow compatibility with Node 4.2.1.

下一个版本(11 月)将允许与 Node 4.2.1 兼容。

回答by Chandra Kumar

Basically, create the folder you want to extract Aptanato, and then use this command:

基本上,创建要将Aptana提取到的文件夹,然后使用以下命令:

Aptana_Studio_3_Setup_3.6.1.exe /extract:"folder"

回答by Joan van Zyl

This is a cut and paste from an earlier entry and it worked for me.

这是来自早期条目的剪切和粘贴,它对我有用。

Go to my computer and in the search button write installer_nodejs_windows.msi. It leads you to one search which is something like windows installer. Please click it and install the node that has been already provided to you rather than installing it by yourself. In this way, after a series of installation, set up the aptana and proceed accordingly. It gets installed.

转到我的计算机并在搜索按钮中写入 installer_nodejs_windows.msi。它会引导您进行类似于 Windows 安装程序的搜索。请点击并安装已经提供给您的节点,而不是您自己安装。这样,经过一系列的安装后,设置aptana并进行相应的操作。它被安装。

回答by Nikhil Kulkarni

Right click the Aptana Studio setup file and click "Run as Administrator". Worked for me.

右键单击 Aptana Studio 安装文件,然后单击“以管理员身份运行”。对我来说有效。

Its is most probably the lack of admin rights that is preventing Aptana setup from making changes to your computer by installing nodejs, git, etc prerequisites.

最有可能的原因是缺乏管理员权限导致 Aptana 安装程序无法通过安装 nodejs、git 等先决条件来更改您的计算机。

回答by shivam srivastava

The latest node.js versions wouldn't work for my Aptana, but an older version did which I found here,

最新的 node.js 版本不适用于我的 Aptana,但我在此处找到一个旧版本,

回答by Hitesh Patil

I have solved this issue using following steps

我已经使用以下步骤解决了这个问题

  1. Rename installation file as aptana.exe
  2. Copy and paste aptana.exe into c drive
  3. Open cmd with Run as administrator
  4. In cmd write command C:/aptana.exe /passive /norestart (Put space before /passive and /norestart)
  1. 将安装文件重命名为 aptana.exe
  2. 将aptana.exe复制粘贴到c盘
  3. 以管理员身份打开cmd
  4. 在cmd写命令C:/aptana.exe /passive /norestart(在/passive和/norestart前加空格)

enter image description here

在此处输入图片说明