Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 537 Bytes

INSTALL.md

File metadata and controls

28 lines (20 loc) · 537 Bytes

Basic install.

Assumes working in a virtualenv. If not, setup.py needs root access.

git clone https://github.com/macobo/python-grader.git
cd python-grader

python setup.py install

python run_tests.py

Installing python from source and create virtualenv.

Not required.

hg clone http://hg.python.org/cpython
cd cpython
hg checkout 3.3
./configure  && make -j3
# so we don't overwrite python executable
sudo make altinstall

virtualenv -p /usr/local/bin/python3.3 ~/py33env
source ~/py33env/bin/activate