mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
10750c9f30
Python 2 is not at python2 in most environments. If we really care, we should just include an explicit version check at the head of the script.
13 lines
296 B
Bash
Executable File
13 lines
296 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
VENV=../venv.mitmproxy
|
|
|
|
python -m virtualenv $VENV
|
|
source $VENV/bin/activate
|
|
pip install --src .. -r requirements.txt
|
|
|
|
echo ""
|
|
echo "* Created virtualenv environment in $VENV."
|
|
echo "* Installed all dependencies into the virtualenv."
|
|
echo "* Activated virtualenv environment."
|