Closed kellyfj closed 1 month ago
Also FYI
python examples/procedural_circle_square_test.py
Traceback (most recent call last):
File "/Users/kellyfj/dev/fuzzy-artmap/examples/procedural_circle_square_test.py", line 12, in <module>
import tornado
ModuleNotFoundError: No module named 'tornado'
and then after
pip3 install "tornado"
I get
python examples/procedural_circle_square_test.py
Traceback (most recent call last):
File "/Users/kellyfj/dev/fuzzy-artmap/examples/procedural_circle_square_test.py", line 14, in <module>
from fuzzy_artmap.procedural_fuzzy_artmap import FuzzyArtMap
ModuleNotFoundError: No module named 'fuzzy_artmap'
Thanks for raising these issues!
For the numpy issue, that actually looks like it's caused by the version of pytorch you're using. You could try upgrading your version of pytorch (e.g. pip install torch -U
) or uninstall numpy 2 (pip uninstall numpy
) and then install a 1.x version (pip install "numpy<2"
). Either approach might work, and while it doesn't actually appear to be impacting the code's ability to run, I'm not sure what else you might run into.
For the tornado and ModuleNotFoundError
, those should be fixed. The tornado dependency was some vestigial code that's now removed, and the hack to put the parent path in has also been correct, so procedural_circle_square_test.py
should run correctly now.
HI @kellyfj ,
If you're still having issues please feel free to update this issue, otherwise I'll be closing it in a week or so!
Thanks,
-Charles
Great code - easy to read. But I hit the following. I am a newbie at Python so maybe I missed something.
then if I do
I get