I am trying to activate a venv and then run a python script using a .sh or .cmd script.
so far ive got:
#! /bin/bash
cd venv
cd Scripts
activate.bat <- breaks here
cd v:
python test.py
however this doesn't work :( Ive searched online but I can only see solutions for linux.
venv to activate and python script to run.