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
Prerequisite packages are missing in setup.py, leading to errors such as the following:
setup.py
>>> from nnde.neuralnetwork.nnode1ivp import NNODE1IVPv Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/hayesall/Review/nnde/nnde/neuralnetwork/nnode1ivp.py", line 44, in <module> import numpy as np ModuleNotFoundError: No module named 'numpy'
Recommendations:
install_requires
Reproduce with:
# Clone repository git clone [email protected]:elwinter/nnde.git cd nnde # Setup a fresh conda environment conda create -n nnde python=3.7 conda activate nnde pip install -e . # Reproduce error python >>> from nnde.neuralnetwork.nnode1ivp import NNODE1IVPv
The text was updated successfully, but these errors were encountered:
This has been addressed in the latest setup.py as follows:
install_requires=['matplotlib', 'numpy', 'scipy']
It was verified in a bare-bones conda environment created for testing.
Sorry, something went wrong.
elwinter
No branches or pull requests
Prerequisite packages are missing in
setup.py
, leading to errors such as the following:Recommendations:
install_requires
in thesetup.py
(see Python's documentation on distributing packages).Reproduce with:
The text was updated successfully, but these errors were encountered: