aboutsummaryrefslogtreecommitdiffstats
path: root/dev.sh
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2017-01-31 09:02:00 +0100
committerGitHub <noreply@github.com>2017-01-31 09:02:00 +0100
commit1523068b03fe9ca5eb0512b11b4acf5e8efa9773 (patch)
tree3156acc312765ac0a17277ef05326f0b1941282f /dev.sh
parent980b8aedd34caf2084fb217f50f24e7ea0308ac8 (diff)
parent4746ce939fbbf08a37c3d6ea458b1bd37af866fb (diff)
downloadmitmproxy-1523068b03fe9ca5eb0512b11b4acf5e8efa9773.tar.gz
mitmproxy-1523068b03fe9ca5eb0512b11b4acf5e8efa9773.tar.bz2
mitmproxy-1523068b03fe9ca5eb0512b11b4acf5e8efa9773.zip
Merge pull request #1964 from mhils/new-contribution-docs
New contribution docs
Diffstat (limited to 'dev.sh')
-rwxr-xr-xdev.sh18
1 files changed, 8 insertions, 10 deletions
diff --git a/dev.sh b/dev.sh
index 95e8b773..a90b48ab 100755
--- a/dev.sh
+++ b/dev.sh
@@ -2,16 +2,14 @@
set -e
set -x
-PYVERSION=${1:-3.5}
-VENV="venv$PYVERSION"
+echo "Creating dev environment in ./venv..."
-echo "Creating dev environment in $VENV using Python $PYVERSION"
-
-python$PYVERSION -m venv "$VENV"
-. "$VENV/bin/activate"
-pip$PYVERSION install -U pip setuptools
-pip$PYVERSION install -r requirements.txt
+python3 -m venv venv
+. venv/bin/activate
+pip3 install -U pip setuptools
+pip3 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\`"
+echo " * Created virtualenv environment in ./venv."
+echo " * Installed all dependencies into the virtualenv."
+echo " * You can now activate the $(python3 --version) virtualenv with this command: \`. venv/bin/activate\`" \ No newline at end of file