Python Forum

Full Version: Python Windows CLR
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am trying to use python .net but when I run the following code I get the following error
 =11ptSystemError: dynamic module not initialized properly
import sys
import os
sys.path.insert(0, os.path.abspath('./')) 
import clr
Can anyone help? I'm sure I am sure its just a basic error

thanks
Sure, you might want to start by reading the docs: Python for .Net, including how to import modules.