python wand 库的 colab 问题
python colab issue with wand library
您好---
嘿,我想 运行 这个代码时 google.colab 有问题 :
# Import Image from wand.image module
from wand.image import Image
# Read image using Image() function
with Image(filename ="/content/Hand.jpeg") as img:
# Generate noise image using spread() function
img.noise("poisson", attenuate = 0.9)
img.save(filename ="noise_hand.jpeg")
这个命令有问题:
from wand.image import Image
它一直在说:
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-2-c8294d82387e> in <module>()
1 # Import Image from wand.image module
----> 2 from wand.image import Image
这个问题只出现在 colab 中,我的意思是,例如,它在 Microsoft visual studio.
上运行良好
请猜猜有人帮我解决这个问题,在此先感谢
注意:我已经安装并导入了魔杖库
尝试通过 运行 在您的代码之前的单元格中安装 ImageMagick。
!sudo apt install imagemagick
!pip install wand
您好---
嘿,我想 运行 这个代码时 google.colab 有问题 :
# Import Image from wand.image module
from wand.image import Image
# Read image using Image() function
with Image(filename ="/content/Hand.jpeg") as img:
# Generate noise image using spread() function
img.noise("poisson", attenuate = 0.9)
img.save(filename ="noise_hand.jpeg")
这个命令有问题:
from wand.image import Image
它一直在说:
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-2-c8294d82387e> in <module>()
1 # Import Image from wand.image module
----> 2 from wand.image import Image
这个问题只出现在 colab 中,我的意思是,例如,它在 Microsoft visual studio.
上运行良好请猜猜有人帮我解决这个问题,在此先感谢
注意:我已经安装并导入了魔杖库
尝试通过 运行 在您的代码之前的单元格中安装 ImageMagick。
!sudo apt install imagemagick
!pip install wand