- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 easy_install 安装了 Pillow 3.3.0(pip install 会产生相同的行为)。成功安装后,当我导入 Image 类时,出现“非法指令”错误。
安装的输出:
root@rasp01:/data/server# easy_install Pillow
Searching for Pillow
Reading http://pypi.python.org/simple/Pillow/
Best match: Pillow 3.3.0
Downloading https://pypi.python.org/packages/e0/27/f61098a12f14690689924de93ffdd101463083a80bf8ff3e0c218addf05b/Pillow-3.3.0.tar.gz#md5=b5a15b03bf402fe254636c015fcf04da
Processing Pillow-3.3.0.tar.gz
Running Pillow-3.3.0/setup.py -q bdist_egg --dist-dir /tmp/easy_install-c1OEYc/Pillow-3.3.0/egg-dist-tmp-iwARkP
Single threaded build, not installing mp_compile:1 processes
warning: no files found matching '*.sh'
no previously-included directories found matching 'docs/_static'
warning: no previously-included files found matching '.coveragerc'
warning: no previously-included files found matching '.editorconfig'
warning: no previously-included files found matching '.landscape.yaml'
warning: no previously-included files found matching 'appveyor.yml'
warning: no previously-included files found matching 'build_children.sh'
warning: no previously-included files found matching 'tox.ini'
warning: no previously-included files matching '.git*' found anywhere in distribution
warning: no previously-included files matching '*.pyc' found anywhere in distribution
warning: no previously-included files matching '*.so' found anywhere in distribution
--------------------------------------------------------------------
PIL SETUP SUMMARY
--------------------------------------------------------------------
version Pillow 3.3.0
platform linux2 2.7.3 (default, Mar 18 2014, 05:13:23)
[GCC 4.6.3]
--------------------------------------------------------------------
--- JPEG support available
*** OPENJPEG (JPEG2000) support not available
--- ZLIB (PNG/ZIP) support available
*** LIBIMAGEQUANT support not available
*** LIBTIFF support not available
--- FREETYPE2 support available
*** LITTLECMS2 support not available
*** WEBP support not available
*** WEBPMUX support not available
--------------------------------------------------------------------
To add a missing option, make sure you have the required
library and headers.
To check the build, run the selftest.py script.
Adding Pillow 3.3.0 to easy-install.pth file
Installing pilfont.py script to /usr/local/bin
Installing thresholder.py script to /usr/local/bin
Installing gifmaker.py script to /usr/local/bin
Installing viewer.py script to /usr/local/bin
Installing createfontdatachunk.py script to /usr/local/bin
Installing enhancer.py script to /usr/local/bin
Installing pilconvert.py script to /usr/local/bin
Installing pilfile.py script to /usr/local/bin
Installing player.py script to /usr/local/bin
Installing explode.py script to /usr/local/bin
Installing pildriver.py script to /usr/local/bin
Installing painter.py script to /usr/local/bin
Installing pilprint.py script to /usr/local/bin
Installed /usr/local/lib/python2.7/dist-packages/Pillow-3.3.0-py2.7-linux-armv6l.egg
Processing dependencies for Pillow
Finished processing dependencies for Pillow
错误的输出:
root@rasp01:/data/server# python
Python 2.7.3 (default, Mar 18 2014, 05:13:23)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from PIL import Image
Illegal instruction
root@rasp01:/data/server#
有人知道这里出了什么问题吗?提前致谢!
最佳答案
你可以试试
from PIL import *
只需从库中导入所有内容即可
或者如果这不起作用,请尝试
import PIL
关于Python Pillow 无法在 raspbian 上工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38777429/
我有一个 RaspberryPi3 连接到 Adafruit MPL3115A2通过 I2C 总线。我有最新版本的Raspbian Jessie今天下载了。我唯一做的就是运行 sudo rasp-co
我刚刚开始使用我的 RP3 作为我的开发箱,并且一切正常:Python 3.6,创建 venv,安装 posgresql,使用 Django。一切都很好。除此之外,如果我想使用 Heroku,他们的
我正在我的 RaspberryPi 3 Model B 上从源代码编译 ArangoDB 3.2.3。我正在从这里调整构建过程:https://docs.arangodb.com/3.1/cookbo
Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。 想要改善这个问题吗?更新问题,以便将其作为on-topi
我正在尝试创建一个通用时钟框架设备驱动程序。我的测试环境是一个 Raspberry Pi 3,它连接到一个带有时钟芯片的评估板上(通过 I2C)。现在我只是想了解设备树并弄清楚如何修改它以包含现有时钟
不幸的是,我完全不了解 Linux。我有一些需要在后台运行的 PYTHON 脚本。我创建了一个运行它们的简单脚本: #!/bin/bash # Script to start all custom a
我正在运行python代码来进行某些Web抓取,这意味着该代码有时会将数据写入(附加)到文本文件中。有时代码只会冻结,但Shell中不会显示任何错误消息。 我想知道这是否更有可能是因为raspbian
我有一个运行 Pixel raspbian 的 Raspberry pi 2 B。我需要它在启动时自动运行以下命令,这将在 chromium 中打开一个 HTML 文件: chromium-brows
我有一个在虚拟机内运行的 Windows 服务器,并尝试从配置为可以访问虚拟机网络的 raspberry pi 3 访问它。 问题是,当我使用 IP 来ping服务器时,它会响应,但是当我使用名称(在
我已经创建了一个 python 脚本。我设置为守护进程。 当我手动启动时,它工作正常: service testMotor start 效果很好!很酷。 然后我想让它在启动时运行。我按照给出的提示 h
我在 raspbian (Raspberry Pi 2) 上遇到 mongodb 问题。当我启动系统时,默认情况下mongo服务在后台运行。我可以在本地使用 shell,但我无法从本地网络或外部网络连
我使用以下配置从源代码安装了 bluez-5.15: $ ./configure --prefix=/usr --mandir=/usr/share/man --sysconfdir=/etc \ -
我编写了这个服务,它使用 node.js 运行 TCP 服务器,将数据从微 Controller 传输到 mysql 服务器。 root@DietPi:~# sudo cat /lib/systemd
我正在使用 PyGObject 创建一个 UI,它将在连接到运行 Raspbian 的 Pi 3 的 7"官方 RPi 触摸屏上运行。作为此界面的一部分,UI 需要一个屏幕键盘。我知道有两个虚拟键盘P
我不是Python的专家,试图通过USB音频设备捕获/记录音频。 在命令终端上工作正常。 但是我想制作一个只录制音频并在需要时停止的程序。 我听说过ab8 Pyaudio库,该库具有某些API来执行此
我正在尝试在树莓派3上旋转一个容器。该容器具有一个MySQL服务器,当我尝试旋转时会给我带来一些麻烦。 $ docker-compose up > /dev/null & $ Building mys
我对 linux 上的设备驱动程序比较陌生。 我想要实现的是,在我的 Raspberry 启动时,外部 RGB 驱动程序将接收 i2c 命令,因此您可以在启动时看到 LED 亮起。 我的方法是尝试通过
我在树莓派上安装了 raspbian jessie。我试图将 iceweasel 网络浏览器配置为在启动时启动。 在/etc/xdg/lxsession/LXDE-pi/autostart 下已经配置
我找不到在 shell 脚本中使用 omxplayer 以随机“随机播放”顺序播放文件夹中视频的方法。我希望它循环播放“播放列表”,但到目前为止,我只能找到一种方法来循环播放按字母顺序排列的所有文件夹
我目前在我的树莓派上使用 wordpress。就在最近,我试图连接到 apache 网络服务器,但遇到了一个有趣的错误。 建立数据库连接时出错。 所以我四处搜索并摆弄我的树莓派,发现 mysql 服务
我是一名优秀的程序员,十分优秀!