3

after installation iropython on windows 7 there is a environment variable

PYTHONPATH=C:\Program Files (x86)\IronPython 2.7\Lib

well known this variable on linux system, I want to expand it to folder c:\user...\pymodules I try it with

PYTHONPATH=C:\Program Files (x86)\IronPython 2.7\Lib:c:\user\...\pymodules

and

PYTHONPATH=C:\Program Files (x86)\IronPython 2.7\Lib;c:\user\...\pymodules

but on both ways I have no success.

Is there any solution for this problem

laalto
  • 150,114
  • 66
  • 286
  • 303
Werner
  • 31
  • 3

1 Answers1

5

The equivalent environment variable for IronPython is IRONPYTHONPATH.

Jeff Hardy
  • 7,632
  • 24
  • 24
  • 2
    What a shame the iron python docs at https://ironpython-test.readthedocs.org/en/latest/using/windows.html don't say this! – danio May 27 '14 at 12:53