Sunday, April 7, 2024

Python Environments

Python environments are contained sub-environments which allows the developer to install packages and maintain a mess free environment from the barebone global environment.


Python environment using venv

1. creating a python environment using venv

c:\> python -m venv c:\mypythonprojects\newproject


If in vscode









Monday, April 1, 2024

Photography

 Photowalk in MBS

Starting RUST

Installing RUST in Windows

1. When installing in windows Rust has a prerequisite : Rust Visual C++ prerequisites

2. To obtain these packages installed it is recommended to download the "Visual Studio installer".
    (download vs_BuildTools.exe and run with selected option "")

3. Then install "".

Check the RUST installation
Check the installed RUST version by using "rustc --version" in a terminal window.


RUST's inbuild build management

CARGO is the RUST's build management tool.
check it's installation using \>cargo --version

CARGO can be used to build, run, test, create documentation and publish RUST libraries.

Preparing VSCode for RUST coding
We do require to install the extension "rust analyzer".
For debugging purposes install "CodeLLDB" extention.





Python Environments

Python environments are contained sub-environments which allows the developer to install packages and maintain a mess free environment from ...