Hi Christophe, Am So., 10. Dez. 2023 um 19:49 Uhr schrieb Christophe Nassar <[email protected]>: > > "(tf) C:\*****\****\****\DiffMorph-master\DiffMorph-master>morph.py -s > images/img_1.jpg -t images/img_2.jpg > Traceback (most recent call last): > File "C:\Users\chris\Desktop\DiffMorph-master\DiffMorph-master\morph.py", > line 3, in <module> > import numpy as np > ModuleNotFoundError: No module named 'numpy'"
It looks to me like if the Python interpreter used to run your script 'morph.py' wenn you just say '> morph.py [...]' is different from the one you're using when e.g. running pip. Maybe you can try '> python morph.py [...]' and see if this works, or just '> python' followed by '>>> import numpy' to narrow down the error. You might also try to use the 'py' wrapper, it's got several options to specify which of the installed Pythons to run. HTH Friedrich _______________________________________________ NumPy-Discussion mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/numpy-discussion.python.org/ Member address: [email protected]
