You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Native modules like zstandard won't install on Big Sur within virtual environments created by virtualenv. See the wheel bug here.
By bumping the embedded version of wheel to 0.36.1, this should be resolved.
To reproduce
Ensure that you're on an Intel Mac running Big Sur
brew install python. You may need to relaunch your shell so that brew's python is preferred.
pip3 install --user virtualenv
python3 -m virtualenv tmp-env
source tmp-env/bin/activate
pip install zstandard
Environment
Provide at least:
OS: Intel Mac Big Sur
pip list of the host python where virtualenv is installed:
Issue
Native modules like
zstandard
won't install on Big Sur within virtual environments created byvirtualenv
. See thewheel
bug here.By bumping the embedded version of
wheel
to0.36.1
, this should be resolved.To reproduce
brew install python
. You may need to relaunch your shell so that brew'spython
is preferred.pip3 install --user virtualenv
python3 -m virtualenv tmp-env
source tmp-env/bin/activate
pip install zstandard
Environment
Provide at least:
pip list
of the host python wherevirtualenv
is installed:Output of the virtual environment creation
Make sure to run the creation with
-vvv --with-traceback
:The text was updated successfully, but these errors were encountered: