0
Do you know where I can download Libs and share my?
Where
2 ответов
+ 1
pip is the tool used to download and install packages (modules) from the python package index:
https://pip.pypa.io/en/stable/
To share your own modules, you need to package and publish them:
https://docs.python.org/3/distributing/index.html
https://docs.python-guide.org/shipping/packaging/
https://stackabuse.com/python-modules-creating-importing-and-sharing/
https://stackoverflow.com/questions/17174992/what-is-the-proper-way-to-work-with-shared-modules-in-python-development
0
Thanks