Are you getting an error when trying to add the sys.path.append call (and if so what error)? A good place to put this would be on application start in global.py so that it only happens once.
David
Marked as answer by davidebb on Dec 19, 2006 11:25 PM
ryszarddrozd
Member
5 Points
1 Post
How to Integrate IronPython ASP.NET and Python 2.4.4?
Nov 23, 2006 09:02 AM|LINK
To integrate IronPython-1.0 and Python 2.4.4 I need to edit IronPython-1.0\lib\site.py:
import sys
sys.path.append(r"E:\my\tools\Python24\Lib")
and this work fine.
But:
1. IronPython ASP.NET does not has lib folder.
2. When I try to add these lines to source file, it does not work.
How to Integrate IronPython ASP.NET and Python 2.4.4?
davidebb
Contributor
7006 Points
1366 Posts
Microsoft
Re: How to Integrate IronPython ASP.NET and Python 2.4.4?
Nov 24, 2006 12:49 AM|LINK
Hi Ryszard,
Are you getting an error when trying to add the sys.path.append call (and if so what error)? A good place to put this would be on application start in global.py so that it only happens once.
David