-
-
Notifications
You must be signed in to change notification settings - Fork 5
virtualenv from cpython source
Anthony Sottile edited this page Oct 21, 2018
·
3 revisions
run this once
mkdir prefix
./configure --prefix=$PWD/prefixthen iterate by doing:
make -j4 installAnd then set up a virtualenv with
virtualenv venv -p ~/workspace/cpython/prefix/bin/python3
# for python 2.x
# virtualenv venv -p ~/workspace/cpython/prefix/bin/python