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
Fix broken installation on Windows in virtualenv (#4149)
Fixes#4142. Python `site.py` from any virtualenv does not contain
many functions added in python 2.7
(see: pypa/virtualenv#355), which results in
method `site.getsitepackages` being absent.
This commit replaces getsitepackages call with equivalent of
`distutils.sysconfig.get_python_lib` which is supported in virtualenv.
0 commit comments