/etc/pixi/config.toml:
default-channels = ["https://COMPANY.jfrog.io/artifactory/api/conda/conda/COMPANY", "https://COMPANY.jfrog.io/artifactory/api/conda/conda"]
pixi init pixi-hello-world
cd pixi-hello-world
pixi add python
pixi init test-env
cd test-env
pixi add dtn-dsutils
pixi shell
exit
pixi install \
--channel https://COMPANY.jfrog.io/artifactory/api/conda/conda/COMPANY\
--channel https://COMPANY.jfrog.io/artifactory/api/conda/conda \
--environment python "python==3.12.*"
pixi add python=3.12.*
hello_world.py:
def hello():
print("Hello World, to the new revolution in package management.")
if __name__ == "__main__":
hello()
pixi run python hello_world.py
pixi task add hello python hello_world.py
pixi run hello
pixi run mypy
pixi run ruff_check
pixi run ruff_format
pixi run yamllint
pixi run test
pixi shell
python
exit
pixi init --import environment.yml
ulimit -n 10000
pixi install
pixi global install bumpver mamba rattler-build
pixi self update