-
Notifications
You must be signed in to change notification settings - Fork 4
Setup
Philipp Niedermayer edited this page Oct 21, 2024
·
7 revisions
Prerequisites: Up-to-date python installation with pip
Clone the repository
git clone [email protected]:xsuite/xplt.git
cd xplt
Setting up a virtual environment and install additional dependencies for development
virtualenv .venv
source .venv/bin/activate
pip install -r requirements/docs-requirements.txt # optional, only for python 3.12
pip install -r requirements/tests-requirements-py3.12.txt # adjust python version
pip install -e .
pip install pre-commit
pre-commit install
git config core.autocrlf input
Launch a Jupyter session for testing and debugging of the example notebooks
jupyter lab
- The main development is done on the
main
branch - Bugfixes for previous versions are done on separate
fix-v0.0
branches