使用jupyter打开图片
时间: 2023-07-20 18:16:28 浏览: 67
juprter_jupyternotebook_语法_
可以使用Python中的matplotlib库来打开图片。以下是示例代码:
```python
import matplotlib.pyplot as plt
import matplotlib.image as mpimg
img = mpimg.imread('path/to/image.jpg') # 读取图片文件
plt.imshow(img) # 显示图片
plt.show() # 显示图片窗口
```
其中,`path/to/image.jpg`应该替换为你要打开的图片文件的路径。
阅读全文