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

后端 未结 1 820
天涯浪人
天涯浪人 2021-01-13 22:48

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/Tut

相关标签:
1条回答
  • 2021-01-13 23:38

    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.

    0 讨论(0)
提交回复
热议问题