Getting Started¶
This section provides instructions for setting up your development environment. If you follow the steps from top to bottom you should be ready to roll by the end.
Get the Source¶
The source code for the PyMLST project lives at github. You can use git clone to get it.
git clone https://github.com/bvalot/pyMLST.git
Create the Virtual Environment¶
You can create a virtual environment and install the project’s dependencies using make.
make venv
source venv/bin/activate
make install
Try It Out¶
We recommend that you test your environment by running appropriate tests. You can do this with the make test target.
make test
If the tests run and pass, you’re ready to roll.
Getting Answers¶
Once the environment is set up, you can perform a quick build of this project documentation using the make answers target.
make answers