← ClaudeAtlas

pixi-package-managerlisted

Fast, reproducible scientific Python environments with pixi - conda and PyPI unified
aiskillstore/marketplace · ★ 329 · AI & Automation · score 79
Install: claude install-skill aiskillstore/marketplace
# Pixi Package Manager for Scientific Python Master **pixi**, the modern package manager that unifies conda and PyPI ecosystems for fast, reproducible scientific Python development. Learn how to manage complex scientific dependencies, create isolated environments, and build reproducible workflows using `pyproject.toml` integration. **Official Documentation**: https://pixi.sh **GitHub**: https://github.com/prefix-dev/pixi ## Quick Reference Card ### Setup ```bash # Installation must be performed separately # On the server, load via lmod if not already in path module load Dev/pixi # Initialize new project with pyproject.toml pixi init --format pyproject # Initialize existing Python project pixi init --format pyproject --import-environment ``` ### Essential Commands ```bash # Add dependencies pixi add numpy scipy pandas # conda packages pixi add --pypi pytest-cov # PyPI-only packages pixi add --feature dev pytest ruff # dev environment # Install all dependencies pixi install # Run commands in environment pixi run python script.py pixi run pytest # Shell with environment activated pixi shell # Add tasks pixi task add test "pytest tests/" pixi task add docs "sphinx-build docs/ docs/_build" # Run tasks pixi run test pixi run docs # Update dependencies pixi update numpy # update specific pixi update # update all # List packages pixi list pixi tree numpy # show