mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
f815525f18
- add dev.bat for Windows users - remove ~/.pipcache creation. If that causes issues with PyInstaller, we should use pip --no-cache-dir there or rm -r pip.locations.USER_CACHE_DIR. - remove superfluous pip install calls.
6 lines
129 B
Batchfile
6 lines
129 B
Batchfile
@echo off
|
|
set VENV=..\venv.mitmproxy
|
|
|
|
virtualenv %VENV%
|
|
call %VENV%\Scripts\activate.bat
|
|
pip install --src .. -r requirements.txt |