vote up 1 vote down star

I have built the IronPythonIntegration solution that comes with the Visual Studio 2005 SDK (as explained at http://www.izume.com/2007/10/13/integrating-ironpython-with-visual-studio-2005), and I can now use IronPython projects inside Visual Studio 2005. However, to let a Python file import from the standard library I need to include these two lines first:

import sys
sys.path.append('c:\Python24\lib')

and similarly for any other folders I want to be able to import from.

Does anyone know a way to set up import paths so that all IronPython projects automatically pick them up?

flag

Hey Charles, did you find a way to make this work with the latest IronPython studio? – Dennis Roche Jul 17 at 0:57
I've done very little with IronPython for a while now. (It's on a long list of projects I'd like to find some time for one day.) Which version of IronPythonStudio do you mean? – Charles Anderson Jul 29 at 15:51

1 Answer

vote up 2 vote down

Set the environment variable IRONPYTHONPATH in your operating system to 'c:\Python24\lib'. (Or anywhere else you need).

link|flag
I've done that already. It works in the ipy.exe shell, but has no effect in Visual Studio. – Charles Anderson Oct 31 '08 at 14:17
Yikes, then I guess you'll have to do it manually. – Ali A Oct 31 '08 at 23:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.