Getting Started¶
Welcome to the Loom documentation! ๐
This guide will help you set up Loom on your machine and run your first tests.
Installing from Github¶
TODO
Installing from source¶
1. Clone the repository¶
2. Install Poetry¶
Loom uses Poetry for dependency management.
We recommend installing Poetry in a dedicated virtual environment.
Run the installer:
Make Poetry available permanently by adding it to your shell config:
# For Bash
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
# For Zsh (default on Mac)
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc
3. Install Loom with Poetry¶
Inside the project folder:
This will install Loom and all required dependencies inside a Poetry-managed virtual environment.
4. Optional configurations¶
-
Keep the virtual environment inside the project directory:
-
Install extra dependencies (if you plan to contribute, build docs, or use Jupyter notebooks):
5. Run the tests¶
Make sure everything works:
If all tests pass, youโre ready to use Loom! ๐
If you run into issues, check the Poetry documentation or open an issue on GitHub.