Werner
Werner

Reputation: 31

IronPython windows 7 pythonpath

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

Upvotes: 3

Views: 2261

Answers (1)

Jeff Hardy
Jeff Hardy

Reputation: 7662

The equivalent environment variable for IronPython is IRONPYTHONPATH.

Upvotes: 5

Related Questions