Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Python Abaqus script : "No module named odbAccess"

Status
Not open for further replies.

Tarhouni

Student
Mar 3, 2021
4
TN
Hello,

My question is around an error on python : no module Named 'odbAccess'.

I have started with these lines :

import sys
import odbAccess
import numpy as np
from odbAccess import *
from abaqusConstants import *
from types import IntType
from numpy import array

For information, this script is running when I use the command Run script with abaqus and the error appears when I run directly with python.

I would be very grateful if you help me to solve this problem.

Thank you
 
Replies continue below

Recommended for you

The error is pretty obvious... you're trying to import a modules named odbAccess, but Python can't find it. It's either not in your search path or it doesn't exist.

Dan - Owner
Footwell%20Animation%20Tiny.gif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top