-
Notifications
You must be signed in to change notification settings - Fork 11
Developer Installation
Zachary del Rosario edited this page Aug 6, 2021
·
9 revisions
In order to contribute to Grama, you will need to follow these instructions.
pip uninstall py-grama
Click the Fork
button (on the top-right of the py_grama GitHub page) to create your own "forked" copy of the repository.
Clone your forked copy to your computer.
Note 1: We recommend Anaconda Python as your distribution, as it takes care of many of the dependencies for Grama.
Note 2: Make sure to use the req-both.txt
requirements file; a developer install requires additional packages to run the test suite.
git clone [email protected]:${USERNAME}/py_grama.git
cd py_grama/
pip install -r req-both.txt
pip install .
Where ${USERNAME} is your GitHub username.
TODO