'(param0)' needs pkg_resources (part of setuptools).
Package:
wheel
251
Exception Class:
RuntimeError
Raise code
def require_pkgresources(name):
try:
import pkg_resources # noqa: F401
except ImportError:
raise RuntimeError("'{0}' needs pkg_resources (part of setuptools).".format(name))
class WheelError(Exception):
pass
Links to the raise (1)
https://github.com/pypa/wheel/blob/6e86e6b886d7744cba1faa80bf3d12c8ac8db3f8/src/wheel/cli/__init__.py#L16Ways to fix
Code that raises the exception:
import wheel
Fix: Type in your terminal
sudo pip install setuptools
Add a possible fix
Please authorize to post fix