Answer by Damiana Costa for nvm ls-remote command results in "N/A"
It's work for me in my linux: export NVM_NODEJS_ORG_MIRROR=http://nodejs.org/dist
View ArticleAnswer by Anil Yadav for nvm ls-remote command results in "N/A"
For me, this will work nvm alias default node points "default" at the latest installed Node version (8.11.1).
View ArticleAnswer by Clairton Luz for nvm ls-remote command results in "N/A"
If you are using nvm behide a proxy you need set proxy config to curl edit or create the file ~/.curlrc and add this line with your proxy echo...
View ArticleAnswer by Matt Olsen for nvm ls-remote command results in "N/A"
I had this same problem, but none of the other solutions helped. curl -v $NVM_NODEJS_ORG_MIRROR/ showed TLS 1.2 and no problem with certs. When I tried which curl, it turns out that I had an...
View ArticleAnswer by seamonkey for 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 box under Virtual Box 4.3.30 on Windows 7. I tried suggestions above and nothing worked for me. I found this post over...
View ArticleAnswer by Gerhard Burger for 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 IMO much better to fix...
View ArticleAnswer by holdfenytolvaj for 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 from http://nodejs.org/dist to http://nodejs.org/dist/ makes it work.
View ArticleAnswer by Jeffrey Martinez for nvm ls-remote command results in "N/A"
Update with comment from LJHarb, who maintains nvm.sh LJHarb suggests that a typical problem causing this is that "the SSL certificate authorities installed in your system have gone out of date"....
View Articlenvm ls-remote command results in "N/A"
I'm trying to install Node 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 be...
View ArticleAnswer by hawkeye for nvm ls-remote command results in "N/A"
Create a file called~/.curlrcIn it insert one line-kThen try again.
View ArticleAnswer by Peter Paul for nvm ls-remote command results in "N/A"
My scenario could be rare, but 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 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 Navy Flame for 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 Mohammad Abbas for 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 redirecrs to https and that results in NA from nvm ls-remote. So what I've done was:sudo...
View ArticleAnswer by mberna for nvm ls-remote command results in "N/A"
On Ubuntu server, the interfaces aren't setup 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 had...
View ArticleAnswer by Mr. 14 for 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 Scirocco for nvm ls-remote command results in "N/A"
For nvm-windows use nvm list available
View ArticleAnswer by Michael Stahl for nvm ls-remote command results in "N/A"
I had the same problem on WSL2. 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) WSL2 have...
View ArticleAnswer by mczarnek for 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 Article--- Article Not Found! ---
*** *** *** RSSing Note: Article is missing! We don't know where we put it!!. *** ***
View Article