Installation guide

1- Download and install the code editor VSCode. Make sure to select the “Add to PATH” option when installing

2- Download and install Python.

3- Add the Python extension in the code editor (in “Extensions marketplace” on the left sidebar)

4- Open the terminal inside VS Code by clicking Terminal > New Terminal. Run the following command to create an environment .venv:

python -m venv .venv

5- Activate the environment writting in the terminal

.venv\Scripts\Activate.ps1

Note (from here)

On Microsoft Windows, it may be required to enable the Activate.ps1 script by setting the execution policy for the user. You can do this by issuing the following PowerShell command:

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

6- Install the package:

pip install simeasren