🖥️Installation
Hypster is a lightweight package with minimal dependencies.
uv add hypsterpip install hypsterHypster comes with an interactive Jupyter Notebook UI to make instantiation as easy as 🥧
uv add "hypster[jupyter]"Dependencies:
Install Hypster with Optuna extras:
uv add 'hypster[optuna]'Or add Optuna directly:
uv add optunaHypster comes with an interactive Jupyter Notebook UI to make instantiation as easy as 🥧
pip install hypster[jupyter]Dependencies:
Interested in contributing to Hypster? Go ahead and install the full development suite using:
uv add "hypster[dev]"Dependencies:
Interested in contributing to Hypster? Go ahead and install the full development suite using:
pip install hypster[dev]Dependencies:
Verification
After installation, you can verify your setup by running:
import hypster
print(hypster.__version__)System Requirements
Python 3.10 or higher
Optional: Jupyter Notebook/Lab for interactive features
Troubleshooting
If you encounter any installation issues:
With uv (recommended):
Ensure uv is up to date:
uv self updateEnsure
hypsteris up to date
uv add --upgrade hypsterFor Jupyter-related issues, make sure Jupyter is properly installed:
# For JupyterLab
uv add jupyterlab
# Or 'classic' Jupyter Notebook
uv add notebookWith pip:
Ensure your pip is up to date:
pip install -U pipEnsure
hypsteris up to date
pip install -U hypsterFor Jupyter-related issues, make sure Jupyter is properly installed:
# For JupyterLab
pip install -U jupyterlab
# Or 'classic' Jupyter Notebook
pip install -U notebookIf you're still having problems, please open an issue on our GitHub repository.
Last updated
Was this helpful?