-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
our distribution, identified as "bionic", is not currently supported #904
Comments
No longer a problem, this has been fixed. |
@wolfy1339 okay. |
From my end, still not working. I am using the ubuntu:18.04 docker.
|
Is there any particular reason for installing 10.x ?
They probably don’t support newer distribution versions on the older versions of node that are EOL
…________________________________
From: Bugazelle <notifications@github.com>
Sent: Monday, October 28, 2019 10:30:10 PM
To: nodesource/distributions <distributions@noreply.github.com>
Cc: wolfy1339 <wolfy1339@outlook.com>; Mention <mention@noreply.github.com>
Subject: Re: [nodesource/distributions] our distribution, identified as "bionic", is not currently supported (#904)
@wolfy1339<https://github.com/wolfy1339>
From my end, still not working. I am using the ubuntu:18.04 docker.
Would you please give us a clear step to make it working?
root@cd74e0327cff:~# curl -sL -k https://deb.nodesource.com/setup_10.x | bash -
## Installing the NodeSource Node.js 10.x repo...
## Populating apt-get cache...
+ apt-get update
Hit:1 http://archive.ubuntu.com/ubuntu bionic InRelease
Get:2 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB]
Get:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB]
Get:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB]
Fetched 252 kB in 10s (26.2 kB/s)
Reading package lists... Done
## Confirming "bionic" is supported...
+ curl -sLf -o /dev/null 'https://deb.nodesource.com/node_10.x/dists/bionic/Release'
## Your distribution, identified as "bionic", is not currently supported, please contact NodeSource at https://github.com/nodesource/distributions/issues if you think this is incorrect or would like your distribution to be considered for support
root@cd74e0327cff:~#
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub<#904?email_source=notifications&email_token=ABDB6FLGESCKNOOKEIVOV3DQQ6N3FA5CNFSM4IXZSSF2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOECPAXJY#issuecomment-547228583>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/ABDB6FODZVSYHCT37JCTK7LQQ6N3FANCNFSM4IXZSSFQ>.
|
Find the reason, because we are behind the proxy, and the ssl certificate issue, failed to run setup_10.x script. Suggest: |
This issue has been fixed, |
no it's not. sudo bash nodesource_setup.sh Installing the NodeSource Node.js 10.x repo...Populating apt-get cache...
Confirming "bionic" is supported...
Your distribution, identified as "bionic", is not currently supported, please contact NodeSource at https://github.com/nodesource/distributions/issues if you think this is incorrect or would like your distribution to be considered for support |
Hi @Demasso. I had this same problem and found the issue for me was because my corporate proxy does a man in the middle and supplies a self signed certificate that was causing the curl command in the script to fail which is why I got that message. So I had to add the self signed corporate root certificate to ubuntu's ca-certificates. I also modified the bash script to add --cacert /path/to/selfsigned.crt to the 2 curl commands in the script (ln 281 & ln 303 at time of writing). Although those modifications may not have been necessary after adding the cert to the system but I did it just in case. After that I was able to install node 13.9.0 without issue. Hopefully this is helpful to anyone who was seeing the same issue and is behind a corporate proxy that inspects and re-signs what is passed through it. |
I had the same issue with using a corporate proxy but in my case just exporting the $ export http_proxy=http://xxx
$ export https_proxy=http://xxx
$ curl -sL https://deb.nodesource.com/setup_current.x | sudo -E bash -
... |
Your distribution, identified as "bionic", is not currently supported, please contact NodeSource at https://github.com/nodesource/distributions/issues if you think this is incorrect or would like your distribution to be considered for support
The text was updated successfully, but these errors were encountered: