lognplot icon indicating copy to clipboard operation
lognplot copied to clipboard

Wrong instruction for installation: cargo run vs. build

Open KarlZeilhofer opened this issue 5 years ago • 1 comments

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

KarlZeilhofer avatar Feb 24 '20 00:02 KarlZeilhofer

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.

windelbouwman avatar Feb 24 '20 16:02 windelbouwman