Installing new libraries/crates

Python

$ pip install foo 

Rust

$ cargo install foo

running--compiling

Python

$ python my_python_program.py 

Rust

$ cargo run

In Rust, there is a --release flag that allows for more compile time optimization to be done, but it will take longer to compile

$ cargo run --release