-
-
Notifications
You must be signed in to change notification settings - Fork 26
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
Install not working properly #20
Comments
That error message is coming from the following statement in this plugin's install script: [ -x "$(which wget)" -o -x "$(which curl)" ] To figure out what's happening, let's break that down into another script for debugging: #!/usr/bin/env bash
WGET="$(which wget)"
CURL="$(which curl)"
echo "wget: ${WGET}"
echo "curl: ${CURL}" If you copy/paste that into a new file, Can you try that and paste the result here? I'm also curious what is printed if you run |
This was the result @canterberry
I installed npm install --global curl But I'm still getting the same error |
Thanks for sharing! I see two highly suspicious things in the output:
I know it may not be helpful to suggest and could seem like overkill, but given what I'm seeing in the CLI output you've shared, it might be better to factory reset and start again from a known common state. Otherwise, we may end up spending a significant amount of time reverse-engineering all the possible things that could have impacted your system's binaries and/or shell environment. If anyone else has advice to help, please chime in! I'm not as well informed on the variety of environments folks might be using, personally, but we've got a wide community here who may have much more insight to offer. I imagine other tools might be affected by this class of issue as well. |
Closing this issue as stale. |
Just fyi, was facing a similar issue. What helped was running However, even then it's not working - not gonna create a new issue, just gonna install yarn manually, but fyi:
|
@FeanorsCurse I saw the artifacts are missing... I think it will be fixed at some point. Old versions work properly. |
Hello, I'm trying to install yarn by the command:
And I get the following message:
I also tried install another yarn versions but I still get the same error message.
I'm currently using a Macbook and I have
curl
installed. I checked it by executing:Hope someone can help me 😄
The text was updated successfully, but these errors were encountered: