- Python 3.8 or higher
- pip
# Clone the repository
git clone https://github.com/yourusername/toolbox.git
cd toolbox
# Install in editable mode with development dependencies
pip install -e ".[dev]"# Clone the repository
git clone https://github.com/yourusername/toolbox.git
cd toolbox
# Install
pip install .pip install toolbox# Install with all optional dependencies
pip install ".[all]"
# Install specific optional dependencies
pip install ".[dev]"After installation, verify it works:
python -c "import toolbox; print(toolbox.__version__)"To build source and wheel distributions:
# Install build tools
pip install build
# Build distributions
python -m build
# Distributions will be in dist/If you encounter import errors, ensure:
- The package is properly installed:
pip list | grep toolbox - You're using the correct Python environment
- The package is in your Python path
If you get missing dependency errors:
pip install -e ".[all]"