First steps for learning python
https://realpython.com/intro-to-pyenv/ for ubuntu
https://opensource.com/article/19/5/python-3-default-mac for macos
You should install python, and pip by pyenv, it is easy to install several versions of python on your machine and it is so easy to switch each version
--------------------
install RUST and Cargo
and apply
Rust has multiple compilers and nightly contains some of the more experimental features. I was able to upgrade from stable Rust to nightly following the advice on the Rust-Lang-Nursery GitHub Page:
Install nightly toolchain:
$ rustup install nightly
Switch to nightly toolchain as default toolchain:
$ rustup default nightly
Comments
Post a Comment