From 1fdbb2e27bff175fd60ab93c4b290d6243ede61d Mon Sep 17 00:00:00 2001 From: meliurwen Date: Tue, 22 Mar 2022 08:51:28 +0100 Subject: [PATCH] Removed unnecessary instructions in the README and tweaked the remaining ones --- README.md | 34 ++-------------------------------- 1 file changed, 2 insertions(+), 32 deletions(-) diff --git a/README.md b/README.md index dc0302a..232110b 100644 --- a/README.md +++ b/README.md @@ -10,36 +10,6 @@ A Continuous Time Bayesian Networks Library written in Rust. 🦀 -### From Source - -**Prerequisites:** - -+ `rust` - -**Install:** - -At the _root_ of the project's folder launch: - -```sh -cargo install --locked --path . -``` - -**Uninstall:** - -Anywhere in the system launch: - -```sh -cargo uninstall rustyCTBN -``` - -**Upgrade:** - -At the _root_ of the project's folder launch: - -```sh -cargo install --force --locked --path . -``` - ## Develop **Prerequisites:** @@ -59,11 +29,11 @@ That's all! ☕️ To launch **tests**: ```sh -cargo test --locked +cargo test ``` To **lint**: ```sh -cargo check --locked +cargo check ```