mirror of
https://github.com/zhigang1992/mitmproxy.git
synced 2026-01-12 22:48:54 +08:00
19 lines
571 B
Batchfile
19 lines
571 B
Batchfile
@echo off
|
|
set VENV=.\venv
|
|
|
|
virtualenv %VENV% --always-copy
|
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
|
call %VENV%\Scripts\activate.bat
|
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
|
pip install -e ./netlib[dev]
|
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
|
pip install -e ./pathod[dev]
|
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
|
pip install -e ./mitmproxy[dev,examples,contentviews]
|
|
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.
|