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 -V
$ pip --version
$ pip-compile --version
in a requirements.in, I try to install spacy for non M1 chip and spacy[apple] for M1
requirements.in
spacy
spacy[apple]
spacy; platform_machine != 'arm64' spacy[apple]; sys_platform == 'darwin' and platform_machine == 'arm64'
in the requirements.txt
requirements.txt
spacy; platform_machine != 'arm64'
I would like to be honest, I am not sure about the syntax for the installation of an extra via the environment markers. Do you have some advices?
Thank you
The text was updated successfully, but these errors were encountered:
I think this is currently working as intended.. Might this be a duplicate of #1553 or #1326?
Sorry, something went wrong.
I'm going to close this in favor of concentrating relevant discussion at #1326, thanks!
No branches or pull requests
Environment Versions
$ python -V
3.10.1$ pip --version
21.3.1$ pip-compile --version
6.4.0Steps to replicate
in a
requirements.in
, I try to installspacy
for non M1 chip andspacy[apple]
for M1Expected result
in the
requirements.txt
Actual result
I would like to be honest, I am not sure about the syntax for the installation of an extra via the environment markers. Do you have some advices?
Thank you
The text was updated successfully, but these errors were encountered: