How do I use the osx-64 version of a package on osx-arm64? #2978
Answered
by
baszalmstra
mahesh-panchal
asked this question in
Q&A
-
A colleague of mine has a conda environment file like: name: hmmcleaner
channels:
- conda-forge
- bioconda
dependencies:
- chrisjackson-pellicle::hmmcleaner where hmmcleaner has builds for linux-64 and osx-64. We've both tried on our Macs to create this environment, but we get: % pixi init --import conda_env.yml -p osx-arm64 -p osx-64 -p linux-64
✔ Created /Users/myuser/Downloads/test_hmmcleaner/pixi.toml
% pixi install
Error:
x failed to solve the conda requirements of 'default' 'osx-arm64'
`-> Cannot solve the request because of: No candidates were found for hmmcleaner *. I was under the impression that it would automatically install the osx-64 build version and use Rosetta with it. What did I misunderstand? |
Beta Was this translation helpful? Give feedback.
Answered by
baszalmstra
Jan 21, 2025
Replies: 1 comment 4 replies
-
If you dont add |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
mahesh-panchal
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you dont add
osx-arm64
as a platform but do addosx-64
, pixi will fall back toosx-64
onosx-arm64
machines.