[IronPython] Cannot import 'Networkx' into Ironpython

2011-01-25 Thread Federico Vaggi
Hello, I am a very new user to Ironpython, so hopefully I am not missing anything obvious. I read the FAQ and searched the Ironpython site and I couldn't find a solution to the problem I was having. I have installed both CPython 2.7 and Ironpython 2.7 (the alpha version) and I am

Re: [IronPython] Cannot import 'Networkx' into Ironpython

2011-01-25 Thread Jeff Hardy
It looks like networkx is a pure-Python package, so it should work. What are you adding sys.path? I cloned the repo into the networkx folder, which contains a networkx folder - sys.path should point to the outer folder. sys.path.append(r'C:\Users\user\Documents\Repositories\networkx') Doing

Re: [IronPython] Cannot import 'Networkx' into Ironpython

2011-01-25 Thread Federico Vaggi
Hi Jeff, my python directory looks like this: C:\Python27\Lib\site-packagesdir Volume in drive C is OS Volume Serial Number is CA49-670D Directory of C:\Python27\Lib\site-packages 25/01/2011 16:37 DIR . 25/01/2011 16:37 DIR .. 20/09/2006 18:05 126

Re: [IronPython] Cannot import 'Networkx' into Ironpython

2011-01-25 Thread Jeff Hardy
On Tue, Jan 25, 2011 at 9:07 AM, Federico Vaggi va...@cosbi.eu wrote: I added: sys.path.append(rC:\Python27\Lib\site-packages\networkx) to site.py in the ironpython folder and this is not enough to get ironpython to see it, but it is enough to get cpython to see it without any further