Here are the methods I have tried:
- run "cargo install ndarray", error: specified package
ndarray v0.15.1
has no binaries - download, unzip and run "cargo build", "cargo install --path ." from "https://github.com/rust-ndarray/ndarray", error: specified package
ndarray v0.15.1 (C:\Users\Administrator\Downloads\ndarray-master)
has no binaries - edit "Cargo.toml" with [dependencies] ndarray = {path = "C:/Users/Administrator/Downloads/ndarray-master"}, error: error[E0463]: can't find crate for
ndarray
BTW, code is here:
extern crate ndarray;
fn main() {
println!("Hello, world!");
}
Any help is appreciated. Thank you in advance.