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
Virtualenv does not seem to be aware of this file, and does not copy it in the virtual environments. Thus installing packages will fail in such virtual environments.
Example bug report: TritonDataCenter/pkgsrc#323
The error is
ModuleNotFoundError: No module named '_sysconfigdata__sunos5_'
because the override for _sysconfig_name_tmpl is not considered, because the _distutils_system_mod file is not available in the virtual environment.
Please copy this file (.../site-packages/_distutils_system_mod.py) if it is available.
The text was updated successfully, but these errors were encountered:
setuptools added support for a
_distutils_system_mod
override file to distutils.pypa/setuptools#2896
This allows packaging systems to override particular distutils defaults with their preferred solution.
This is how pkgsrc uses the override file:
Virtualenv does not seem to be aware of this file, and does not copy it in the virtual environments. Thus installing packages will fail in such virtual environments.
Example bug report:
TritonDataCenter/pkgsrc#323
The error is
because the override for
_sysconfig_name_tmpl
is not considered, because the_distutils_system_mod
file is not available in the virtual environment.Please copy this file (
.../site-packages/_distutils_system_mod.py
) if it is available.The text was updated successfully, but these errors were encountered: