lognplot
lognplot copied to clipboard
Wrong instruction for installation: cargo run vs. build
Hi,
just a minor notice: in the README you wrote
$ cd lognplotgtk
$ cargo run --release
but it shoud be
$ cargo build --release
right?
Thanks for that awesome program!
Greets, Karl
Hi,
Thanks for trying this program. Did you use it? Do you have any feedback? I would love some feedback from users and what features you would like to add.
Regarding the install script,
cargo run does a build and run. cargo build does build only. To install something, there also exists the cargo install command, but I think the best way to build the application is by using cargo build --release and then check the target/release folder.