ore-cli-gpu icon indicating copy to clipboard operation
ore-cli-gpu copied to clipboard

Take the path to the executsble that was just created and replace the PATH_TO_EXE with the path to the .exe in the mine.rs.

Open sutiao311 opened this issue 10 months ago • 1 comments

let mut child = tokio::process::Command::new("C:\ore-cli-gpu\target\release") .stdin(std::process::Stdio::piped()) .stdout(std::process::Stdio::piped()) .stderr(std::process::Stdio::piped()) .spawn() .expect("nonce_worker failed to spawn");

I set it this way, and it keeps showing an error. How do I set it

sutiao311 avatar Apr 16 '24 11:04 sutiao311

add r before " and it should be cuda process not ore

r"C:\ore-cli-gpu\windows.exe"

Puckapao avatar Apr 16 '24 14:04 Puckapao