-
Notifications
You must be signed in to change notification settings - Fork 23
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
From source installation error #14
Comments
Weird... I would assume that What shell are you running? Is this bash in WSL? |
bash |
Can you try running this in a standalone script and see if it works? i.e. make a file use std::process::Command;
fn main(){
let result = Command::new("pnpm").arg("-v").output().unwrap();
println!("{}", String::from_utf8(result.stdout).unwrap());
} Then run |
Same error :/
|
What is the output of |
(Sorry for all the questions, I don't have a Windows machine, and I'm not sure how to solve this.) |
Try running this script instead? use std::process::Command;
fn main(){
let result = Command::new("cmd").args(&["/C", "pnpm", "-v"]).output().unwrap();
println!("{}", String::from_utf8(result.stdout).unwrap());
} |
I can't install the project
Here is a screenshot of the cargo and pnpm versions and the installation error:
The text was updated successfully, but these errors were encountered: