-
Hi there, I'm trying to install
$ pixi --version
pixi 0.29.0 $ pixi add isaacsim==4.1.0.0 --pypi -v
INFO pixi::environment: verifying prefix location is unchanged, with prefix file: /home/artefacts/repos/temp/test/.pixi/envs/default/conda-meta/pixi_env_prefix
INFO pixi::lock_file::outdated: environment 'default' is out of date because it does not exist in the lock-file.
INFO pixi::lock_file::resolve::uv_resolution_context: uv keyring provider is disabled
INFO resolve_conda{group=default platform=linux-64}: pixi::lock_file::update: fetched 2221 records in 57.084405465s
INFO pixi::lock_file::update: resolved conda environment for environment 'default' 'linux-64' in 59s 331ms 276us 31ns
INFO pixi::environment: Creating prefix file at: /home/artefacts/repos/temp/test/.pixi/envs/default/conda-meta/pixi_env_prefix
INFO pixi::environment: Prefix file updated with: '/home/artefacts/repos/temp/test/.pixi/envs/default/conda-meta'.
INFO pixi::environment: Checking if history file exists: /home/artefacts/repos/temp/test/.pixi/envs/default/conda-meta/history
INFO pixi::environment: Creating history file: /home/artefacts/repos/temp/test/.pixi/envs/default/conda-meta/history
INFO pixi::lock_file::update: updated conda packages in the 'default' prefix in 131ms 243us 473ns
INFO resolve_pypi{group=default platform=linux-64}: pixi::lock_file::resolve::pypi: there are no python packages installed by conda
× failed to solve the pypi requirements of 'default' 'linux-64'
├─▶ failed to resolve pypi dependencies
╰─▶ Because isaacsim==4.1.0.0 has no wheels with a matching platform tag and you require isaacsim==4.1.0.0, we can conclude that your requirements are unsatisfiable. pixi.toml [project]
authors = ["test <test@gmail.com>"]
channels = ["conda-forge"]
description = "Add a short description here"
name = "test"
platforms = ["linux-64"]
version = "0.1.0"
[pypi-options]
extra-index-urls = ["https://pypi.nvidia.com"]
[tasks]
[dependencies]
python = "3.10.*" If you have any suggestion about what should i do differently or how to add |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
So, i'm not sure if i'm making a mistake or is this an Issue with Pixi. Should i open an issue instead? |
Beta Was this translation helpful? Give feedback.
-
Ah, if i create a $ pixi add isaacsim==4.1.0.0 isaacsim-extscache-physics==4.1.0.0 isaacsim-extscache-kit==4.1.0.0 isaacsim-extscache-kit-sdk==4.1.0.0 --pypi
✔ Added isaacsim==4.1.0.0
✔ Added isaacsim-extscache-physics==4.1.0.0
✔ Added isaacsim-extscache-kit==4.1.0.0
✔ Added isaacsim-extscache-kit-sdk==4.1.0.0
Added these as pypi-dependencies. pyproject.toml [project]
authors = [{name = "Polgar Andras", email = "azazdeaz@gmail.com"}]
dependencies = [ "isaacsim==4.1.0.0", "isaacsim-extscache-physics==4.1.0.0", "isaacsim-extscache-kit==4.1.0.0", "isaacsim-extscache-kit-sdk==4.1.0.0"]
description = "Add a short description here"
name = "isaacsim-pixi-example"
version = "0.1.0"
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.hatch.build.targets.wheel]
packages = ["src/isaacsim-pixi-example"]
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.pypi-dependencies]
video-demos = { path = ".", editable = true }
[tool.pixi.tasks]
[tool.pixi.dependencies]
python = ">=3.10,<3.11"
[pypi-options]
extra-index-urls = ["https://pypi.nvidia.com"] |
Beta Was this translation helpful? Give feedback.
-
Not really sure, why it does work with a [system-requirements]
libc = { family = "glibc", version = "2.34" } Closing this, feel free to re-open if anything else occurs. |
Beta Was this translation helpful? Give feedback.
Not really sure, why it does work with a
pyproject.toml
. But you can add this topixi.toml
:Closing this, feel free to re-open if anything else occurs.