1set PYTHON=./../../../../../prebuilts/python/windows/x86/python3 2%PYTHON% -m venv 3start venv\Scripts\activate.bat 4 5rem let's write out the pip.conf used to pull local packages 6echo "[global]" > venv/pip.conf 7echo "timeout=1" >> venv/pip.conf 8echo "%~dp0/repo/simple" >> venv/pip.conf 9 10rem install all the requirements 11pip install --pre --extra-index-url repo/simple -e .\[test\]