If you have Abaqus installed on your Linux or Windows workstation, type abaqus python
at the system prompt. Python enters its interpretive mode and displays the >>>
prompt.
You can enter Python statements at the >>>
prompt. To see the value of a variable or expression, type the variable name or expression at the Python prompt. To exit the Python interpreter, type CtrlD
on Linux systems or CtrlZ
Enter on Windows systems.
You can also use Python to run a script directly by typing abaqus python
scriptname.py at the system prompt. Abaqus will run the script through the Python interpreter and return you to the system prompt. For an example of running a Python script using Abaqus, see Creating functions.