Welcome to the OSSL chemometrics manual!
This is a code repository, please visit the website to navigate through the different content sections.
A peer-reviewed and open-access publication on the OSSL project is available for additional reference.
You can also visit the OSSL manual and other additional resources in our GitHub organization.
To run this application locally, you will need Python 3.12.
git clone [https://github.com/soilspectroscopy/ossl-chemometrics.git](https://github.com/soilspectroscopy/ossl-chemometrics.git)
cd ossl-chemometricspython3.12 -m venv venv
source venv/bin/activatepip install --upgrade pip
pip install -r requirements.txtAs a regular Shiny app:
shiny run app.py --port 8080 --reload
kill -9 $(lsof -t -i:8080) # To close the serverAs a Shinylive app:
shinylive export . _site
python3 -m http.server --directory _site --bind localhost 8008
pkill -f "http.server" # To close the server