unattended install of python module .exe files

吃可爱长大的小学妹 提交于 2019-12-08 18:06:38

问题


I'm looking for a way to install a bunch of python modules in .exe format like:

ipython-0.13.1.py2-win32-PROPER.exe
scipy-0.12.0b1.win32-py2.7.exe
numpy-MKL-1.7.0.win32-py2.7.exe
pywin32-218.win32-py2.7.exe

I can install other modules by installing distribute and call pip from command-line, but I want to know if I can automate installs of .exe files - so users don't have to click buttons of 'next' 'okay'.


回答1:


well, this is indeed possible:

I used distribute's easy_install and everything worked like a magic.

just use easy_install [exeinstaller1] [exeinstaller2] ...



来源:https://stackoverflow.com/questions/15484718/unattended-install-of-python-module-exe-files

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!