2

I created a python package called ExoplanetPy on PyPI, but the pictures on the project page seem to not be rendered for some reason. For context, the README.md displays pictures on the GitHub repository.

How do I edit the markdown file such that I can have pictures when I publish it on PyPI?

Thank you.

Arnav Das
  • 65
  • 6

1 Answers1

4

According to here - Stack Overflow Question

PyPI will not read your package distributions for the image. You have to use the image's external link.

So change the code to:

![](https://raw.githubusercontent.com/ExoplanetPy/ExoplanetPy/master/images/logo_400.png "ExoplanetPy logo")
Kiwirafe
  • 574
  • 4
  • 12