Problem resolved. I have successfully finished: "cargo install csvlens
".
The problem as noted with EDIT-2 were lines that looked like:
token = "…"
in the config file. By commenting all places with the: xxx = "…"
, and running the install command, the csvlens
is now installed.
$ cargo install csvlens
Updating crates.io index
Downloaded csvlens v0.12.0
Downloaded 1 crate (65.3 KB) in 0.36s
....
Compiling csvlens v0.12.0
Finished `release` profile [optimized] target(s) in 4m 10s
Installing /home/william/.config/cargo/bin/csvlens
Installed package `csvlens v0.12.0` (executable `csvlens`)
$
Those: "…"
strings look like placeholders. I think they ought to be comments if they are optional or are not always used(???). Thanks to @Kevin Reid for the suggestion.