how_to.install_trouver
trouver
Basic installation
Install Python. Note that
trouveris currently (as of 12/24/2023) mostly tested on Python version 3.10.6.Go to a command-line (e.g.
cmdon Windows,Terminalon Linux, etc.) and runpython -m pip install trouveror
pip install trouver
Recommended additional installations
We recommend installing
Obsidian.mdto view, edit, and modify mathematical notes created by or which interact withtrouver.We recommend installing
Jupyterto use notebooks to use the code fromtrouver. More specifically, we recommend installingJupyterLabviapip install jupyterlaband opening
JupyterLabviajupyter-labor installing the classic Jupyter Notebook via
pip install notebookand opening the notebook via
jupyter notebookAlternatively, we also recommend using notebooks via
Visual Studio Code.
For Developers/Install from source
To use or develop the source code or documentation of trouver,
clone the
trouverGitHub repository. See GitHub’s instructions on cloning a repository for instance.trouveris developed usingnbdev. As such,nbdevPython library is required to effectively develop the source code and documentation oftrouver. Installnbdevwithpip install nbdevTo install
trouverfrom source, go to the clonedtrouverfolder in a terminal, and runpip install -e '.[dev]'See the
nbdevtutorial page for more details on usingnbdev.