Can Microsoft Visual C++ 2008 Redistributable Package be freely redistributed

断了今生、忘了曾经 提交于 2019-12-09 03:16:50

问题


I am planning to use py2exe to make an application developped with Python 2.6.

It seems that my app need the VC redistribuables : http://www.py2exe.org/index.cgi/Tutorial#Step5

I've read this tutorial and the redistribuables license agreement and I am not sure if I can freely redistribute these files with my program. (I don't have VS2008 license)

Can I bundle the redistribs into an installer and make the installation transparent for the user or do they have to download the files by their own from Microsoft website?

Thanks in advance


回答1:


I think you should be fine if you simply include the installation of vcredist_x86.exe into your installation procedure (according to the document you linked to):

Either you can instruct your users to download and run this themselves, or you could create an installer for your application (see Step 6 below), that includes vcredist_x86.exe (which is itself redistributable by anyone), and then run that as part of your application installation

Mind you that I'm not a lawyer and thus this is not legal advice.



来源:https://stackoverflow.com/questions/2643760/can-microsoft-visual-c-2008-redistributable-package-be-freely-redistributed

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