windelbouwman / lognplot

Plotting and logging of real-time data for desktop.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Wrong instruction for installation: cargo run vs. build

KarlZeilhofer opened this issue · 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

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.