dfgsdfgfd
Mechanical
- Sep 30, 2015
- 37
Hi everyone,
I'm trying to run Abaqus through a command line with abaqus python d:\file.py. However, I receive the following error message:
file.py looks as follows (and I receive the same error for all of the Abaqus-modules I want to import; it works for other, standard modules):
Unfortunately, I couldn't find any solution online and would really appreciate your help. Thank you very much!
I'm trying to run Abaqus through a command line with abaqus python d:\file.py. However, I receive the following error message:
Python:
Traceback (most recent call last):
File "file.py", line 1, in <module>
from part import *
File "SMAPython\SMAPytLibPy.m\src\site.py", line 120, in _numpyHook
"""Append ./build/lib.<platform> in case we're running in the build dir
ImportError: No module named part
file.py looks as follows (and I receive the same error for all of the Abaqus-modules I want to import; it works for other, standard modules):
Python:
from part import *
from material import *
from section import *
from assembly import *
from step import *
from interaction import *
from load import *
...
Unfortunately, I couldn't find any solution online and would really appreciate your help. Thank you very much!