![]() |
Where to add own python modules in WinPython? - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: Where to add own python modules in WinPython? (/thread-32114.html) |
Where to add own python modules in WinPython? - HinterhaeltigesSchlaengelchen - Jan-21-2021 i have a WinPython distribution decicated to a project that is used by multiple developers. I added all modules required for the project via WinPython Gui. Furthermore, we have a couple of custom python modules in the company that dont belong to the project. Therefore, i would like to put them in WinPython. Any idea what is the best place? 'Lib/site-packages' came to my mind, but its already pretty full of other stuff. Does WinPython come with a "MyOwnModules" folder that i did not find yet? RE: Where to add own python modules in WinPython? - snippsat - Jan-21-2021 Can use site module for this. Follow this post. |