New Drawbot version
-
I have updated to the new Drawbot version and got problems related to modules. Errors such as :
Traceback (most recent call last):
File "<untitled>", line 1, in <module>
ModuleNotFoundError: No module named 'numpy'
are reported. The same code was working with the previous version of Drawbot.
Can you help. Thanks,
JD
-
see the release notes: https://forum.drawbot.com/topic/203/drawbot3-121-is-released
numpy
is not embedded into DrawBot and the latest DrawBot is python 3.7 and it can only add local packages installed with the same python version.If you want to use
numpy
you need to install 3.7, get it here https://www.python.org/downloads/ and installnumpy
locallygood luck!
-
Thanks Frederik, that solved the issue. JD