-
Hello all. I am attempting the pandas module into my script through the cadwork api. However, I am having issues with the NumPy dependency. It seems NumPy and my version of Python are in conflict. I created a conda environment with python 3.9 and versions of pandas and numpy that correspond, but still have issues. I have added the path to these packages to my sys.path variable. Does anyone know what could be the problem? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 8 replies
-
Greetings @NickatLCB Working fine in python=3.9.16 with anaconda. From terminal type:
Kind regards |
Beta Was this translation helpful? Give feedback.
-
I remember struggling with it once upon a time. I solved it scanning the sys paths in my normal python environment and pretty much appending all of the necessary ones to my python scripts inside cadwork, see below.
|
Beta Was this translation helpful? Give feedback.
-
The NumPy version that works within cadwork is: "1.22.2" |
Beta Was this translation helpful? Give feedback.
I remember struggling with it once upon a time.
I solved it scanning the sys paths in my normal python environment and pretty much appending all of the necessary ones to my python scripts inside cadwork, see below.