2016-10-16 78 views
1

這是在我的ubuntu 16.04中運行命令nvm install 4.6.0時得到的輸出。節點版本管理器:curl:(56)GnuTLS recv錯誤(-54):拉函數錯誤

###############################################################   88.0% 
curl: (56) GnuTLS recv error (-54): Error in the pull function. 
Binary download from https://nodejs.org/dist/v4.6.0/node-v4.6.0-linux-x64.tar.xz failed, trying source. 
grep: /home/swap/.nvm/.cache/bin/node-v4.6.0-linux-x64/node-v4.6.0-linux-x64.tar.xz: No such file or directory 
Provided file to checksum does not exist. 
Binary download failed, trying source. 
#### 

回答

0

我也遇到過這個問題,我認爲它必須是一個問題與一些GNU或捲曲

的辦法,我能安裝的NodeJS使用節點版本管理

第一步

Run either: 
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.5/install.sh | bash 
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.5/install.sh | bash 

使用wget或curl

step2

關閉當前終端,然後打開另一個

nvm ls //should show if you have nodejs previous versions if none itll indicate 

第三步: 今天安裝最新版本的NodeJS其版本8

nvm install v8.6.0 

檢查最新版本,並更換號碼

現在nodejs應該安裝

node -v 
npm -v 
相關問題