![]() |
Open source PyCharm - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: General (https://python-forum.io/forum-1.html) +--- Forum: News and Discussions (https://python-forum.io/forum-31.html) +--- Thread: Open source PyCharm (/thread-28648.html) |
Open source PyCharm - Ben69ben - Jul-28-2020 Hi everyone, I've just got the PyCharm student's version. Could you please tell me if Open source code means that eveyone can see/ use my code? Does it really safe to use IDEs as that without any concern? Thank you for Helping. RE: Open source PyCharm - buran - Jul-28-2020 You should distinguish between the license of the IDE and the licenses of your code. You can distribute your code under any licenses you want. If you choose to distribute your code under open source license - look at https://opensource.org/ Open source definition open source FAQ also license comparison also look at Open Source software vs free and open source software on wikipedia Red Hat Enterprise Linux have a Report on the State of the Enterprise Open Source RE: Open source PyCharm - Ben69ben - Jul-28-2020 (Jul-28-2020, 08:32 AM)buran Wrote: You should distinguish between the license of the IDE and the licenses of your code. First of all, thank you. So, it's actually says that as long as i won't distribute my code to anyone, It will remain private? RE: Open source PyCharm - buran - Jul-28-2020 (Jul-28-2020, 08:52 AM)Ben69ben Wrote: as long as i won't distribute my code to anyone, It will remain privateyes( well, unless someone installed spyware on your computer in order to steal your code :-)) Note that Student license of PyCharm DOES NOT allows you to distribute your code as commercial product. But it was not you asked for initially. Under the Student license you can use software for non-commercial, educational purposes only, including conducting academic research or providing educational services; Note that PyCharm also has free community edition as well as open-source license for core-developers of eligible open-source projects. If you are going to distribute your code I would use the community version or choose other IDE like VSCode RE: Open source PyCharm - Ben69ben - Jul-28-2020 (Jul-28-2020, 09:19 AM)buran Wrote:Thank you for your help!(Jul-28-2020, 08:52 AM)Ben69ben Wrote: as long as i won't distribute my code to anyone, It will remain privateyes( well, unless someone installed spyware on your computer in order to steal your code :-)) |