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
Environment:
Problems:
The Toolbox installs incompatible versions of numpy (2.2.2) and matplotlib (3.10.0), leading to import errors such as:
ImportError: numpy.core.multiarray failed to import
AttributeError: _ARRAY_API not found
Missing dependencies: jinja2 and typeguard are not installed automatically despite being required. leading to errors:
generate-parameter-library-py 0.3.8 requires jinja2, which is not installed.
generate-parameter-library-py 0.3.8 requires typeguard, which is not installed.
Solution: (what worked for me) specify: conda install numpy=1.26.4 matplotlib=3.7.0 -y pip install jinja2 typeguard
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Environment:
Problems:
The Toolbox installs incompatible versions of numpy (2.2.2) and matplotlib (3.10.0),
leading to import errors such as:
ImportError: numpy.core.multiarray failed to import
AttributeError: _ARRAY_API not found
Missing dependencies: jinja2 and typeguard are not installed automatically despite being required.
leading to errors:
generate-parameter-library-py 0.3.8 requires jinja2, which is not installed.
generate-parameter-library-py 0.3.8 requires typeguard, which is not installed.
Solution: (what worked for me)
specify:
conda install numpy=1.26.4 matplotlib=3.7.0 -y
pip install jinja2 typeguard
The text was updated successfully, but these errors were encountered: