I am making a program and want to put it under the GPL but I am using PySide in it which is under the LGPL. Can I still put my program under the GPL or does it have to be under the LGPL. Also what do both of these licenses do to my program? Thanks

有帮助吗?

解决方案

Yes, you can. What the GPL is doing to your program? Read the license. :-)

The LGPL does not do much to your program. LGPL makes static linking more difficult, but I doubt this matters with python.

其他提示

Yes, you can use LGPL licensed software as part of your program. The big stipulation is that the LGPL licensed aspects need to A) have their source code available and B) need to be able to be modifiable while still interacting with your software.

As you're planning on releasing your software under the GPL, you'll be making all of your source code available, and this shouldn't be an issue.

The license information for GPL and LGPL both cover basically everything you need to know.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top