mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-04 11:47:14 +00:00
- 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
No EOL
117 B
Bash
Executable file
6 lines
No EOL
117 B
Bash
Executable file
#!/bin/sh
|
|
VENV=../venv.mitmproxy
|
|
|
|
virtualenv $VENV
|
|
source $VENV/bin/activate
|
|
pip install --src .. -r requirements.txt |