mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 15:37:45 +00:00
0ebcd21eb1
We can generalise this again when 3.6 comes out...
18 lines
473 B
Bash
Executable File
18 lines
473 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
set -x
|
|
|
|
PYVERSION=3.5
|
|
VENV="venv$PYVERSION"
|
|
|
|
echo "Creating dev environment in $VENV using Python $PYVERSION"
|
|
|
|
python$PYVERSION -m virtualenv "$VENV" --always-copy
|
|
. "$VENV/bin/activate"
|
|
pip$PYVERSION install -U pip setuptools
|
|
pip$PYVERSION install -r requirements.txt
|
|
|
|
echo ""
|
|
echo "* Virtualenv created in $VENV and all dependencies installed."
|
|
echo "* You can now activate the $(python --version) virtualenv with this command: \`. $VENV/bin/activate\`"
|