IronPython and PyFit -- revisited
In my earlier post, I omitted one crucial detail, which I hadn't actually connected with getting the PyFit system to work, and that is I had already added the existing Python 2.5 standard libraries to my IronPython 1.0.1 site.py
file thus:--
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
# begin added | |
sys.path.append(r"c:\python25\lib") | |
# end added | |
import clr |
This should not be needed if you use FePy instead; and may not be needed for 1.1 or 2.0
No comments :
Post a Comment