How/where to publish Python package

后端 未结 2 723
星月不相逢
星月不相逢 2021-01-20 05:44

If one creates a useful Python package, how/where does one publish/advertise it for other people to use?

I\'ve put it on hithub, but even Google does not find it aft

2条回答
  •  别那么骄傲
    2021-01-20 06:20

    Here is the PyPI guide. https://python-packaging-user-guide.readthedocs.org/en/latest/distributing.html

    PyPI is the place for putting your Python packages up for others to find. The built-in tool pip references it to install packages for you, and at least one IDE uses pip in the background to give you a GUI for doing this. (PyCharm)

提交回复
热议问题