如何创建一个 README.md 在 PyPI 上显示图片?
How to create a README.md that shows pictures on PyPI?
我创建了一个名为ExoplanetPy on PyPI的python包,但项目页面上的图片由于某种原因似乎无法呈现。
对于上下文,README.md 在 GitHub repository 上显示图片。
如何编辑 markdown 文件,以便在 PyPI 上发布时可以有图片?
谢谢。
根据here - Stack Overflow Question
PyPI will not read your package distributions for the image. You have
to use the image's external link.
所以把代码改成:
![](https://raw.githubusercontent.com/ExoplanetPy/ExoplanetPy/master/images/logo_400.png "ExoplanetPy logo")
我创建了一个名为ExoplanetPy on PyPI的python包,但项目页面上的图片由于某种原因似乎无法呈现。 对于上下文,README.md 在 GitHub repository 上显示图片。
如何编辑 markdown 文件,以便在 PyPI 上发布时可以有图片?
谢谢。
根据here - Stack Overflow Question
PyPI will not read your package distributions for the image. You have to use the image's external link.
所以把代码改成:
![](https://raw.githubusercontent.com/ExoplanetPy/ExoplanetPy/master/images/logo_400.png "ExoplanetPy logo")