I want Excel files to be read and write in Abaqus using python scripts. I don't know how to enable xlrd and xlwt in the python version of Abaqus. Please help.
Abaqus python doesn't have pandas library, xlrd or other. I guess your Abaqus python version is 2.7 and hence has numpy only. I order to use data from excel file you will have to do a work around.
I did this
Created master script to read data from excel using regular python and saved my variables of interest and pickle files.
I then called the Abaqus python script using subprocess.call() .
In my Abaqus script i loaded the pickle file and used it there.
If you want to have a look at my code, you can email me.