For windows 10 and 11 users, It's highly recommended to use Windows WSL, cause many of the tutorials for Python are written for Linux environments.
- Open PowerShell or Windows Command Prompt (cmd).
- type the following command
wsl --install
. - After the installation is complete restart your machine.
- Check wsl version
wsl -l -v
.
You can use this documentation of how to complete the setup
- Install pip
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
- run this in the same folder you run the curl in it
python3 get-pip.py
- clone the repo if you aren't already
git clone https://github.com/redelka00/stream-cli
andcd stream-cli
. - create venv
virtualenv venv
. - Activate virtualenv
.\venv\Scripts\activate.bat
Once you setup the virtual environment successfully go back to the README