ironpython - How to install numpy and scipy for Ironpython27? Old method doens't work -
i think popular way before:
https://pytools.codeplex.com/wikipage?title=numpy%20and%20scipy%20for%20.net
but link no longer exist:
https://store.enthought.com/repo/.iron/
i found clone instruction, , found clone of ironpkg-1.0.0.py on github. http://www.enthought.com/repo/.iron/eggs/index-depend.txt no longer exists in internet(i googled it, failed find it)
getting started scipy .net
1.) ironpython download , install ironpython 2.7, require .net v4.0.
2.) modify path
add install location on path, usually: c:\program file\ironpython 2.7
but on 64-bit windows systems is: c:\program file (x86)\ironpython 2.7
as check, open windows command prompt , go directory (which not above) , type:
ipy -v pythoncontext 2.7.0.40 on .net 4.0.30319.225
3.) ironpkg
bootstrap ironpkg, package install manager binary (egg based) python packages. download ironpkg-1.0.0.py , type:
ipy ironpkg-1.0.0.py --install
ironpkg command should available:ironpkg -h (some useful text displayed here)
4.) scipy
installing scipy easy:
ironpkg scipy numpy-2.0.0b2-1.egg
question
i think have done as can do. body succeed install numpy , scipy ironpython27?
for struggling numpy/scipy install ironpythopn, enthought have moved download link https://store.enthought.com/repo/.iron/ . link allow in if registered.
therefore first you'd have register free, open above link, follow steps below
download ironpython-2.7.msi , install it.
download ironpkg-1.0.0.py above link.
- using command line navigate directory placed ironpkg-1.0.0.py , run
ipy ironpkg-1.0.0.py --install
check whether install worked usingironpkg -h
the last step lightly different 1 suggested enthoughts. running
ironpkg scipy
won't work looks @ old web address download. instead download eggs ,index-depend.txt
above link. installation work, have modify download location in config file point local drive instead of website. config file can found @ user directory eg.c:\users\nilster\.ironpkg
. open in textpad , change location directory downloaded eggs eg, mine looksindexedrepos = ['file://c:\work\python\enthought_eggs',]
then run following install numpy/scipy
ironpkg scipy
check whether install worked using
ipy -x:frames -c "import scipy"
Comments
Post a Comment