-
Notifications
You must be signed in to change notification settings - Fork 1
Description
I have tried to install the package with:
brew install numworks/tap/epsilon-sdk
It fails with this error:
==> python3 -c import setuptools... --no-user-cfg install --prefix=/opt/homebrew/Cellar/epsilon-sdk/1.0/li
Last 15 lines from /Users/jph/Library/Logs/Homebrew/epsilon-sdk/01.python3:
file = 'setup.py'
exec(compile(getattr(tokenize, 'open', open)(file).read()
.replace('\r\n', '\n'), file, 'exec'))
--no-user-cfg
install
--prefix=/opt/homebrew/Cellar/epsilon-sdk/1.0/libexec
--install-scripts=/opt/homebrew/Cellar/epsilon-sdk/1.0/libexec/bin
--install-lib=/opt/homebrew/Cellar/epsilon-sdk/1.0/libexec/lib/python3.13/site-packages
--single-version-externally-managed
--record=installed.txt
Traceback (most recent call last):
File "", line 1, in
import setuptools, tokenize
ModuleNotFoundError: No module named 'setuptools'
After I have manually installed python-setuptools manually with:
brew install python-setuptools
it works.
IMHO python-setuptools should be part of the dependency and automatically installed.