8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: