Answer by JBarros for The 'nvm ls-remote' command results in "N/A"
I had the same issue while using the WSL, and then I was able fix it after upgrading from WSLĀ 1 to WSLĀ 2.
View ArticleAnswer by Gerry Zhang for The 'nvm ls-remote' command results in "N/A"
Firstly, I introduce my device and environment: macOS and the Shadowsocks proxy.I took steps to fix it. The nvm ls-remote command results in "N/A".I tried every method on the Internet, and I found one...
View ArticleAnswer by Said Erraoudy for The 'nvm ls-remote' command results in "N/A"
If you are using any proxy or VPN, disable it and try again.
View ArticleAnswer by GUDDU KUMAR for The 'nvm ls-remote' command results in "N/A"
I was facing similar issue in Ubuntu, and I found that the issue is not related to NVM, but it's not able to reach to the Node.js repository due to proxy settings, so I did the below steps and then it...
View ArticleAnswer by Rm4n for The 'nvm ls-remote' command results in "N/A"
In my case, the problem was with DNS; for where I work DNS is set automatically and when I ran curl -v $NVM_NODEJS_ORG_MIRROR/ it lead to Could not resolve host: nodejs.org and ping nodejs.org ran to...
View ArticleAnswer by mczarnek for The 'nvm ls-remote' command results in "N/A"
I found a workaround that allowed me to do what I wanted even though nvm list available still isn't working after trying everything on this list.It might be an old version of curl but working on a...
View ArticleAnswer by Michael Stahl for The 'nvm ls-remote' command results in "N/A"
I had the same problem on WSL 2. I also have an https_proxy environment variable set to my company's https_proxy server.When working inside the company VPN, this did not work since (I believe) WSL 2...
View ArticleAnswer by Scirocco for The 'nvm ls-remote' command results in "N/A"
For nvm-windows, use nvm list available.
View ArticleAnswer by Mr. 14 for The 'nvm ls-remote' command results in "N/A"
I solved my problem by manually upgrading nvm to the latest version( cd "$NVM_DIR" git fetch --tags origin git checkout `git describe --abbrev=0 --tags --match "v[0-9]*" $(git rev-list --tags...
View ArticleAnswer by mberna for The 'nvm ls-remote' command results in "N/A"
On a Ubuntu server, the interfaces aren't set up with DHCP by default.I forgot about this, and after I installed nvm, I rebooted, which lost network connectivity, and didn't realize it. I know that you...
View ArticleAnswer by Mohammad Abbas for The 'nvm ls-remote' command results in "N/A"
I was having this issue lately. Changing to http://nodejs.org/dist/ did not work for me because it redirects to HTTPS and that results in NA from nvm ls-remote. So what I've done was:sudo...
View ArticleAnswer by hawkeye for The 'nvm ls-remote' command results in "N/A"
Create a file called ~/.curlrc. In it, insert one line,-kThen try again.(Warning: This answer disables curl's CA verification. "-k" is shorthand for "--insecure". Don't copy it blindly.)
View ArticleAnswer by Peter Paul for The 'nvm ls-remote' command results in "N/A"
My scenario could be rare, but I just want to add another data point to this thread:Because of my local setup issue, I don't want to install curl, and I explicitly set an alias for curl to warn myself...
View ArticleAnswer by Chris L8 for The 'nvm ls-remote' command results in "N/A"
For others like me who land here after a search:I had the same issue today on Ubuntu, but the cause turned out to be that the /etc/ssl/certs/ca-certificates.crt file was completely empty.The solution...
View ArticleAnswer by nhaht for The 'nvm ls-remote' command results in "N/A"
Changing fromexport NVM_NODEJS_ORG_MIRROR=http://nodejs.org/dist/Toexport NVM_NODEJS_ORG_MIRROR=https://nodejs.org/dist/Worked for me :)
View ArticleAnswer by Damiana for The 'nvm ls-remote' command results in "N/A"
It's working for me in my Linux installation:export NVM_NODEJS_ORG_MIRROR=http://nodejs.org/dist
View ArticleAnswer by Anil Yadav for The 'nvm ls-remote' command results in "N/A"
For me, this will work:nvm alias default node points "default" at the latest installed Node.js version (8.11.1).
View ArticleAnswer by Clairton Luz for The 'nvm ls-remote' command results in "N/A"
If you are using nvm behind a proxy, you need set proxy config to curlEdit or create the file ~/.curlrc and add this line with your proxy:echo...
View ArticleAnswer by Matt Olsen for The 'nvm ls-remote' command results in "N/A"
I had this same problem, but none of the othersolutions helped. curl -v $NVM_NODEJS_ORG_MIRROR/ showed TLS 1.2 and no problem with certificates.When I tried which curl, it turns out that I had an...
View ArticleAnswer by seamonkey for The 'nvm ls-remote' command results in "N/A"
I was running into this problem when using Vagrant 1.7.1 running a UbuntuĀ 14.04 (Trusty Tahr) box under VirtualBox 4.3.30 on Windows 7. I tried the suggestions in previous answer, and nothing worked...
View ArticleAnswer by Gerhard Burger for The 'nvm ls-remote' command results in "N/A"
Most likely this is caused by curl not being able to use certificates for HTTPS URLs (verify with curl $NVM_NODEJS_ORG_MIRROR). Instead of using the HTTP URL as workaround, it is better to fix curl by...
View ArticleAnswer by holdfenytolvaj for The 'nvm ls-remote' command results in "N/A"
It seems the '/' is missing from the end of the URL. That is why the 301 permanently moved message.So changing the link in nvm.sh fromhttp://nodejs.org/disttohttp://nodejs.org/dist/makes it work.
View ArticleAnswer by Jeffrey Martinez for The 'nvm ls-remote' command results in "N/A"
LJHarb (who maintains nvm.sh) suggests that a typical problem causing this is that "the SSL certificate authorities installed in your system have gone out of date". Checking this and trying to fix this...
View ArticleThe 'nvm ls-remote' command results in "N/A"
I'm trying to install Node.js with nvm, but when I type any version, it's not available. When I type nvm ls-remote, I just just get "N/A".I'm able to access the Internet, so I can't figure what could...
View Article