mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
080e453425
Conflicts: dev
15 lines
411 B
Batchfile
15 lines
411 B
Batchfile
@echo off
|
|
set VENV=..\venv.mitmproxy
|
|
|
|
virtualenv %VENV%
|
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
|
call %VENV%\Scripts\activate.bat
|
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
|
pip install --src .. -r requirements.txt
|
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
|
|
|
echo.
|
|
echo * Created virtualenv environment in %VENV%.
|
|
echo * Installed all dependencies into the virtualenv.
|
|
echo * Activated virtualenv environment.
|