Numpy import error

Numpy import error

Anonymous
Not applicable
460 Views
1 Reply
Message 1 of 2

Numpy import error

Anonymous
Not applicable

Hello, I have a difficult time importing Numpy...

I know there are a lot of posts about importing Numpy error. I was able to fix it by using the site-packages install method to my local folder Module. However, today it somehow cannot find the Numpy again. I was wondering is it possible to have Numpy package inside the fusion 360 API? Therefore, the user can just import Numpy directly.

Thank you

Jeff

0 Likes
461 Views
1 Reply
Reply (1)
Message 2 of 2

goyals
Autodesk
Autodesk

Fusion comes with standard python package and I do not think there is any plan to include any new module in it. But generally approach of having site-package in your script directory should work. May be you can try to check if your script folder is included in python search path or not using below script.

 

import sys

sys.path 



Shyam Goyal
Sr. Software Dev. Manager
0 Likes