Installation
Make sure you have the following installed on your system:
Tip
We recommend to install PyRope into a virtual environment. This avoids conflicts with other Python packages on your system.
First change to a directory where you want to store the virtual environment, then create and activate it.
python -m venv venv
venv\Scripts\activate
python3 -m venv venv
source venv/bin/activate
Download and install the current version of PyRope.
python -m pip install git+https://github.com/PyRope-E-Assessment/pyrope.git
python3 -m pip install git+https://github.com/PyRope-E-Assessment/pyrope.git
To see that everything works fine, you can run tests on the sample exercises.
python -m pyrope test
python3 -m pyrope test
You should see an output similar to the following.
..............................................................................
..............................................................................
.....................................................................
----------------------------------------------------------------------
Ran 225 tests in 0.605s
OK
Run the sample exercises.
python -m pyrope run
python3 -m pyrope run