Problem with IOSuite.blend

I’ve tried running every single script from the IOsuite and I always get the same message in the Blender shell…
ok not always the same, but well atleast on most of the scripts it’s this message (and none of the scripts want to work). I’d desperatly need a obj import script but all of the 3 versions I tried won’t work… I think to use the export script I want to use I have to revert to 2.23 anyways (where to get it??), but well at first I’m more concerned about getting the obj file into blender.

Here’s the error message:

AttributeError ‘module’ object has no attribute ‘argv’

and the line that causes it:

if len(sys.argv) == 1

I’m not very used to python so I don’t have a clue what I’d need to change in order to make it work…
I guess the best would be to go back to Blender 2.23??

Not to mention my python problems I’ve had with 2.23, I had everything set up correctly and it just refused to work… always came up with error messages like the ones above…
Maybe I should switch to an older Python Version instead??? I’m completly puzzled as to why scripts just won’t work on me… :conspiration: :wink:

If you guys need any more informations, feel free to ask… I want to get this to work ASAP…

problem solved… reverted to 2.23 and d/l’ed Python 2.0.1 and imported the file as wrl into blender… now I can texture it… well I’ve already done that… still I wasn’t able to get the IOSuite working…

before the if line, try adding

sys.argv = [0,0]

it “could” work.

Martin