You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looking through commits, it seems sometime in the last several months a directory knn was added to the primary idtxl directory, but the setup.py script was not altered to reflect this.
Error Message
This results in the following error
File "/home/user/.local/lib/python3.10/site-packages/idtxl/estimators_python.py", line 6, in <module>
from idtxl.knn.knn_finder_factory import get_knn_finder
ModuleNotFoundError: No module named 'idtxl.knn'
Possible Solution(s)
One possible fix for this is to add idtxl.knn to the package list in setup.py:
Issue Description
Looking through commits, it seems sometime in the last several months a directory
knn
was added to the primaryidtxl
directory, but thesetup.py
script was not altered to reflect this.Error Message
This results in the following error
Possible Solution(s)
One possible fix for this is to add
idtxl.knn
to the package list insetup.py
:I've tried the above fix locally and it seems to solve the issue.
A more general solution and further details can be found in the following thread:
https://stackoverflow.com/questions/68047686/subfolder-in-python-package-not-visible-when-installed
The text was updated successfully, but these errors were encountered: