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?

link|improve this question

Hey Charles, did you find a way to make this work with the latest IronPython studio? – Dennis Jul 17 '09 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 '09 at 15:51
feedback

1 Answer

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

link|improve this answer
1  
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 Afshar Oct 31 '08 at 23:50
feedback

Your Answer

 
or
required, but never shown

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