Does not work with jupyter notebooks.
avinash-mishra opened this issue · 2 comments
avinash-mishra commented
I Tried it Today inside Jupyter notebook but it is not working. Could you please check and fix it.
minimaxir commented
It outputs stylecloud.png
to the working directory. To make it appear in a Jupyter notebook, either include it in a Markdown cell:
![](stylecloud.png)
Or run this command in a normal Python cell:
from IPython.display import Image
Image(filename='stylecloud.png')
avinash-mishra commented
Thanks @minimaxir I'll close the issue.