This crate simply enables the user (with sudo
rights) to install Poetry and all its dependencies (packages). If Poetry is already installed, it will be properly handeled.
It is assumed that the system on which the compiler runs is Debian-based.
```rust fn main() {
use poetry_finder::run;
// Password to check the sudo access
let passwd = "password";
if let Err(e) = run(passwd) {
println!("{}", e);
std::process::exit(1);
}
} ```