We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Python needs to be installed with architecture x86_64 (same as intel):
arch -x86_64 /usr/local/bin/brew install [email protected] python -c "import platform; print(platform.architecture())"
Then create a virtual environment wit conda
# create environment with good architecture CONDA_SUBDIR=osx-64 conda create -n myenv python=3.9 # activate environment conda activate myenv # check python -c "import platform; print(platform.architecture())"
should return: ('64bit', '')
('64bit', '')
Then install desired package
CONDA_SUBDIR=osx-64 conda install package_name # deactivate environment if desired conda deactivate
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Installation instructions:
Python needs to be installed with architecture x86_64 (same as intel):
Then create a virtual environment wit conda
should return:
('64bit', '')
Then install desired package
The text was updated successfully, but these errors were encountered: