iis服务器助手广告广告
返回顶部
首页 > 资讯 > 后端开发 > Python >苹果MacbookPro13M1芯片安装Pillow的方法步骤
  • 415
分享到

苹果MacbookPro13M1芯片安装Pillow的方法步骤

2024-04-02 19:04:59 415人浏览 独家记忆

Python 官方文档:入门教程 => 点击学习

摘要

目录正确的安装错误的安装正确的安装 1、先安装packaging python3 -m pip install packaging 执行这个命令后会提示这样安装成功 Defa

正确的安装

1、先安装packaging


python3 -m pip install packaging

执行这个命令后会提示这样安装成功

Defaulting to user installation because nORMal site-packages is not writeable

Collecting packaging

  Downloading packaging-20.8-py2.py3-none-any.whl (39 kB)

Collecting pyparsing>=2.0.2

  Downloading pyparsing-2.4.7-py2.py3-none-any.whl (67 kB)

     |████████████████████████████████| 67 kB 42 kB/s 

Installing collected packages: pyparsing, packaging

Successfully installed packaging-20.8 pyparsing-2.4.

2、执行下面这个命令,查看命令输出的是什么,输出的名字等下会用到


python3 -c"from packaging import tags; print('\n'.join([str(t) for t in tags.sys_tags()]))" |head -5

我的输出是:

cp38-cp38-Macosx_11_0_arm64

cp38-cp38-macosx_11_0_universal2

cp38-abi3-macosx_11_0_arm64

cp38-abi3-macosx_11_0_universal2

cp38-none-macosx_11_0_arm64

3、在这里下载Pillow安装包https://pypi.org/project/Pillow/8.0.1/#files

请下载Mac版的,并且与你电脑Python版本一样的包,默认是3.8的,就是:Pillow-8.0.1-cp38-cp38-macosx_10_10_x86_64.whl

这个下载完成以后,命令行进入下载目录重命名,因为我上一个命令输出的有cp38-cp38-macosx_11_0_universal2,所以重命名的时候要在这个前面加上下载回来文件的Pillow-8.0.1-

请注意如果不重命名是安装不成功的,会提示

ERROR: Pillow-8.0.1-cp38-cp38-macosx_11_0_x86_64.whl is not a supported wheel on this platform.

4、重命名


mv Pillow-8.0.1-cp38-cp38-macosx_11_0_x86_64.whl Pillow-8.0.1-cp38-cp38-macosx_11_0_universal2.whl

5、安装


python3 -m pip install Pillow-8.0.1-cp38-cp38-macosx_11_0_universal2.whl

安装成功,输出

Defaulting to user installation because normal site-packages is not writeable

Processing ./Pillow-8.0.1-cp38-cp38-macosx_11_0_universal2.whl

Installing collected packages: Pillow

Successfully installed Pillow-8.0.1

错误的安装

官网中是先升级pip到最新版本,然后安装Pillow的,但是这样是错误的

python3 -m pip install --upgrade pip -i Http://mirrors.aliyun.com/pypi/simple --trusted-host mirrors.aliyun.com --user

python3 -m pip install --upgrade Pillow -i http://mirrors.aliyun.com/pypi/simple --trusted-host mirrors.aliyun.com --user

这样安装以后会报下面的错误


ERROR: Command errored out with exit status 1:

   command: /Applications/Xcode.app/Contents/Developer/usr/bin/python3 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/9d/y_278jdd5ws7s8pf0_ds7cs40000gn/T/pip-install-okf0dho1/pillow_76b996deb26b49e88d010da5d5313737/setup.py'"'"'; __file__='"'"'/private/var/folders/9d/y_278jdd5ws7s8pf0_ds7cs40000gn/T/pip-install-okf0dho1/pillow_76b996deb26b49e88d010da5d5313737/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d /private/var/folders/9d/y_278jdd5ws7s8pf0_ds7cs40000gn/T/pip-wheel-h8rcl21r

       cwd: /private/var/folders/9d/y_278jdd5ws7s8pf0_ds7cs40000gn/T/pip-install-okf0dho1/pillow_76b996deb26b49e88d010da5d5313737/

  Complete output (172 lines):

  running bdist_wheel

  running build

  running build_py

  creating build

  creating build/lib.macosx-10.14.6-arm64-3.8

  creating build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/MpoImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImageMode.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/PngImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/XbmImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/PcxImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/SunImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImageFile.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/SpiderImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/TarIO.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/FitsStubImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/MpegImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/BdfFontFile.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/GribStubImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImageStat.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/PixarImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/GimpPaletteFile.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImageColor.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ContainerIO.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/MspImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/MicImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/_version.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImtImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/GifImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/PalmImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImageQt.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImageMath.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/PaletteFile.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/FontFile.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/pdfParser.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ExifTags.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImageCms.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/FpxImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImageChops.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/BufrStubImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/PSDraw.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/PcdImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImageFilter.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImageDraw2.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImagePath.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/DcxImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/__init__.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/JpegPresets.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/Hdf5StubImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/features.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImageDraw.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/GimpGradientFile.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImageWin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/IcoImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/_tkinter_finder.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/EpsImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/TgaImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImageMorph.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/Jpeg2KImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/WalImageFile.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/PcfFontFile.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/BlpImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImageTk.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/GbrImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImageOps.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/PdfImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImageShow.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImageEnhance.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/WmfImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImageGrab.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/WEBPImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/FliImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/TiffTags.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/CurImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/_util.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/GdImageFile.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/TiffImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/IptcImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImagePalette.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/BmpImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImageTransform.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/IcnsImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/McIdasImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/XpmImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/DdsImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImageSequence.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/PyAccess.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/_binary.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/Image.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/__main__.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/XVThumbImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/SgiImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/PsdImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/JpegImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/ImageFont.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/PpmImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  copying src/PIL/FtexImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

  running egg_info

  writing src/Pillow.egg-info/PKG-INFO

  writing dependency_links to src/Pillow.egg-info/dependency_links.txt

  writing top-level names to src/Pillow.egg-info/top_level.txt

  reading manifest file 'src/Pillow.egg-info/SOURCES.txt'

  reading manifest template 'MANIFEST.in'

  warning: no files found matching '*.c'

  warning: no files found matching '*.h'

  warning: no files found matching '*.sh'

  warning: no previously-included files found matching '.appveyor.yml'

  warning: no previously-included files found matching '.coveragerc'

  warning: no previously-included files found matching '.editorconfig'

  warning: no previously-included files found matching '.readthedocs.yml'

  warning: no previously-included files found matching 'codecov.yml'

  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

  no previously-included directories found matching '.ci'

  writing manifest file 'src/Pillow.egg-info/SOURCES.txt'

  running build_ext

  

  

  The headers or library files could not be found for jpeg,

  a required dependency when compiling Pillow from source.

  

  Please see the install instructions at:

     https://pillow.readthedocs.io/en/latest/installation.html

  

  Traceback (most recent call last):

    File "/private/var/folders/9d/y_278jdd5ws7s8pf0_ds7cs40000gn/T/pip-install-okf0dho1/pillow_76b996deb26b49e88d010da5d5313737/setup.py", line 861, in <module>

      setup(

    File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/site-packages/setuptools/__init__.py", line 145, in setup

      return distutils.core.setup(**attrs)

    File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/distutils/core.py", line 148, in setup

      dist.run_commands()

    File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/distutils/dist.py", line 966, in run_commands

      self.run_command(cmd)

    File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/distutils/dist.py", line 985, in run_command

      cmd_obj.run()

    File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/site-packages/wheel/bdist_wheel.py", line 192, in run

      self.run_command('build')

    File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/distutils/cmd.py", line 313, in run_command

      self.distribution.run_command(command)

    File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/distutils/dist.py", line 985, in run_command

      cmd_obj.run()

    File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/distutils/command/build.py", line 135, in run

      self.run_command(cmd_name)

    File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/distutils/cmd.py", line 313, in run_command

      self.distribution.run_command(command)

    File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/distutils/dist.py", line 985, in run_command

      cmd_obj.run()

    File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/site-packages/setuptools/command/build_ext.py", line 84, in run

      _build_ext.run(self)

    File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/distutils/command/build_ext.py", line 340, in run

      self.build_extensions()

    File "/private/var/folders/9d/y_278jdd5ws7s8pf0_ds7cs40000gn/T/pip-install-okf0dho1/pillow_76b996deb26b49e88d010da5d5313737/setup.py", line 698, in build_extensions

      raise RequiredDependencyException(f)

  __main__.RequiredDependencyException: jpeg

  

  During handling of the above exception, another exception occurred:

  

  Traceback (most recent call last):

    File "<string>", line 1, in <module>

    File "/private/var/folders/9d/y_278jdd5ws7s8pf0_ds7cs40000gn/T/pip-install-okf0dho1/pillow_76b996deb26b49e88d010da5d5313737/setup.py", line 914, in <module>

      raise RequiredDependencyException(msg)

  __main__.RequiredDependencyException:

  

  The headers or library files could not be found for jpeg,

  a required dependency when compiling Pillow from source.

  

  Please see the install instructions at:

     https://pillow.readthedocs.io/en/latest/installation.html

  

  

  ----------------------------------------

  ERROR: Failed building wheel for Pillow

  Running setup.py clean for Pillow

Failed to build Pillow

Installing collected packages: Pillow

    Running setup.py install for Pillow ... error

    ERROR: Command errored out with exit status 1:

     command: /Applications/Xcode.app/Contents/Developer/usr/bin/python3 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/9d/y_278jdd5ws7s8pf0_ds7cs40000gn/T/pip-install-okf0dho1/pillow_76b996deb26b49e88d010da5d5313737/setup.py'"'"'; __file__='"'"'/private/var/folders/9d/y_278jdd5ws7s8pf0_ds7cs40000gn/T/pip-install-okf0dho1/pillow_76b996deb26b49e88d010da5d5313737/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /private/var/folders/9d/y_278jdd5ws7s8pf0_ds7cs40000gn/T/pip-record-t6q8624y/install-record.txt --single-version-externally-managed --user --prefix= --compile --install-headers /Users/jia611/Library/Python/3.8/include/python3.8/Pillow

         cwd: /private/var/folders/9d/y_278jdd5ws7s8pf0_ds7cs40000gn/T/pip-install-okf0dho1/pillow_76b996deb26b49e88d010da5d5313737/

    Complete output (174 lines):

    running install

    running build

    running build_py

    creating build

    creating build/lib.macosx-10.14.6-arm64-3.8

    creating build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/MpoImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImageMode.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/PngImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/XbmImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/PcxImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/SunImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImageFile.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/SpiderImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/TarIO.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/FitsStubImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/MpegImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/BdfFontFile.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/GribStubImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImageStat.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/PixarImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/GimpPaletteFile.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImageColor.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ContainerIO.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/MspImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/MicImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/_version.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImtImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/GifImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/PalmImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImageQt.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImageMath.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/PaletteFile.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/FontFile.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/PdfParser.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ExifTags.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImageCms.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/FpxImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImageChops.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/BufrStubImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/PSDraw.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/PcdImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImageFilter.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImageDraw2.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImagePath.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/DcxImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/__init__.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/JpegPresets.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/Hdf5StubImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/features.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImageDraw.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/GimpGradientFile.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImageWin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/IcoImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/_tkinter_finder.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/EpsImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/TgaImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImageMorph.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/Jpeg2KImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/WalImageFile.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/PcfFontFile.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/BlpImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImageTk.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/GbrImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImageOps.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/PdfImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImageShow.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImageEnhance.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/WmfImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImageGrab.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/WebPImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/FliImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/TiffTags.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/CurImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/_util.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/GdImageFile.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/TiffImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/IptcImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImagePalette.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/BmpImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImageTransform.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/IcnsImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/McIdasImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/XpmImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/DdsImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImageSequence.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/PyAccess.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/_binary.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/Image.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/__main__.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/XVThumbImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/SgiImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/PsdImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/JpegImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/ImageFont.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/PpmImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    copying src/PIL/FtexImagePlugin.py -> build/lib.macosx-10.14.6-arm64-3.8/PIL

    running egg_info

    writing src/Pillow.egg-info/PKG-INFO

    writing dependency_links to src/Pillow.egg-info/dependency_links.txt

    writing top-level names to src/Pillow.egg-info/top_level.txt

    reading manifest file 'src/Pillow.egg-info/SOURCES.txt'

    reading manifest template 'MANIFEST.in'

    warning: no files found matching '*.c'

    warning: no files found matching '*.h'

    warning: no files found matching '*.sh'

    warning: no previously-included files found matching '.appveyor.yml'

    warning: no previously-included files found matching '.coveragerc'

    warning: no previously-included files found matching '.editorconfig'

    warning: no previously-included files found matching '.readthedocs.yml'

    warning: no previously-included files found matching 'codecov.yml'

    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

    no previously-included directories found matching '.ci'

    writing manifest file 'src/Pillow.egg-info/SOURCES.txt'

    running build_ext

    

    

    The headers or library files could not be found for jpeg,

    a required dependency when compiling Pillow from source.

    

    Please see the install instructions at:

       https://pillow.readthedocs.io/en/latest/installation.html

    

    Traceback (most recent call last):

      File "/private/var/folders/9d/y_278jdd5ws7s8pf0_ds7cs40000gn/T/pip-install-okf0dho1/pillow_76b996deb26b49e88d010da5d5313737/setup.py", line 861, in <module>

        setup(

      File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/site-packages/setuptools/__init__.py", line 145, in setup

        return distutils.core.setup(**attrs)

      File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/distutils/core.py", line 148, in setup

        dist.run_commands()

      File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/distutils/dist.py", line 966, in run_commands

        self.run_command(cmd)

      File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/distutils/dist.py", line 985, in run_command

        cmd_obj.run()

      File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/site-packages/setuptools/command/install.py", line 61, in run

        return orig.install.run(self)

      File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/distutils/command/install.py", line 561, in run

        self.run_command('build')

      File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/distutils/cmd.py", line 313, in run_command

        self.distribution.run_command(command)

      File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/distutils/dist.py", line 985, in run_command

        cmd_obj.run()

      File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/distutils/command/build.py", line 135, in run

        self.run_command(cmd_name)

      File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/distutils/cmd.py", line 313, in run_command

        self.distribution.run_command(command)

      File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/distutils/dist.py", line 985, in run_command

        cmd_obj.run()

      File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/site-packages/setuptools/command/build_ext.py", line 84, in run

        _build_ext.run(self)

      File "/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/distutils/command/build_ext.py", line 340, in run

        self.build_extensions()

      File "/private/var/folders/9d/y_278jdd5ws7s8pf0_ds7cs40000gn/T/pip-install-okf0dho1/pillow_76b996deb26b49e88d010da5d5313737/setup.py", line 698, in build_extensions

        raise RequiredDependencyException(f)

    __main__.RequiredDependencyException: jpeg

    

    During handling of the above exception, another exception occurred:

    

    Traceback (most recent call last):

      File "<string>", line 1, in <module>

      File "/private/var/folders/9d/y_278jdd5ws7s8pf0_ds7cs40000gn/T/pip-install-okf0dho1/pillow_76b996deb26b49e88d010da5d5313737/setup.py", line 914, in <module>

        raise RequiredDependencyException(msg)

    __main__.RequiredDependencyException:

    

    The headers or library files could not be found for jpeg,

    a required dependency when compiling Pillow from source.

    

    Please see the install instructions at:

       https://pillow.readthedocs.io/en/latest/installation.html

    

    

    ----------------------------------------

ERROR: Command errored out with exit status 1: /Applications/Xcode.app/Contents/Developer/usr/bin/python3 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/9d/y_278jdd5ws7s8pf0_ds7cs40000gn/T/pip-install-okf0dho1/pillow_76b996deb26b49e88d010da5d5313737/setup.py'"'"'; __file__='"'"'/private/var/folders/9d/y_278jdd5ws7s8pf0_ds7cs40000gn/T/pip-install-okf0dho1/pillow_76b996deb26b49e88d010da5d5313737/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /private/var/folders/9d/y_278jdd5ws7s8pf0_ds7cs40000gn/T/pip-record-t6q8624y/install-record.txt --single-version-externally-managed --user --prefix= --compile --install-headers /Users/lizhensheng/Library/Python/3.8/include/python3.8/Pillow Check the logs for full command output.

到此这篇关于苹果Macbook Pro13 M1芯片安装Pillow的方法步骤的文章就介绍到这了,更多相关M1芯片安装Pillow内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

--结束END--

本文标题: 苹果MacbookPro13M1芯片安装Pillow的方法步骤

本文链接: https://www.lsjlt.com/news/158151.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
  • 苹果MacbookPro13M1芯片安装Pillow的方法步骤
    目录正确的安装错误的安装正确的安装 1、先安装packaging python3 -m pip install packaging 执行这个命令后会提示这样安装成功 Defa...
    99+
    2024-04-02
  • 苹果Macbook Pro13 M1芯片安装Pillow的方法是什么
    这篇文章主要介绍“苹果Macbook Pro13 M1芯片安装Pillow的方法是什么”,在日常操作中,相信很多人在苹果Macbook Pro13 M1芯片安装Pillow的方法是什么问题上存在疑惑,...
    99+
    2023-06-21
  • 苹果M1芯片安装nginx 并且部署vue项目步骤详解
    brew安装nginx 苹果mac安装使用 brew 安装,如果brew没有安装的话,请到搜索其他地方。 执行命令 第一步当然是更新我们的brew库,可以认为这个玩意就是个软件仓库,...
    99+
    2024-04-02
  • MacOS M1芯片安装PyQt5的方法
    MacOS M1芯片安装 PyQt5 的方法 关于PyQt5 PyQt5 是GUI 小部件工具包,是 Qt 的 Python 接口,是图形界面开发库,用于程序的用户交互界面 按照官网 PyQt5-pypi 的教程,推荐使用pip的方法进行...
    99+
    2023-08-22
    macos python qt
  • 学习安装Pillow库的详细步骤
    如何安装Pillow库:一步一步教你,需要具体代码示例 导语:Pillow是一个强大的图像处理库,它是Python Imaging Library(PIL)的分支,可以用于图像处理、图像编辑、图像增强等多种应用场景。安装Pill...
    99+
    2024-01-17
  • M1 pro芯片启动Vue项目的方法步骤
    目录引言安装Homebrew安装nvm安装Node安装结束引言 双十一剁手,买了m1 pro的MacBook Pro,所有环境需要重新搭一遍,后端项目比较容易,装个idea就可以启...
    99+
    2024-04-02
  • 苹果mac m1,m2芯片安装 pytorch和tensorflow的GPU版本
    一、下载M芯片的anaconda,并安装 二 、安装GPU版本的pytorch 安装 Xcode xcode-select --install 创建环境 conda create -n torch-gpu python=3.9conda...
    99+
    2023-09-03
    tensorflow macos pytorch 苹果 mac
  • python安装pillow的三种方法
    目录第一种方法第二种方法第三种方法安装pillow(python的图形界面库) 第一种方法 在Dos界面输入pip install pillow(但是不知为何总是失败);搞了好几次都...
    99+
    2024-04-02
  • mysql的安装方法及步骤
    这篇文章主要讲解了“mysql的安装方法及步骤”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“mysql的安装方法及步骤”吧!环境centos 7 ...
    99+
    2024-04-02
  • Mac M1安装Homebrew的方法步骤
    最常用命令 搜索软件: brew search 软件包名称 安装软件: brew install 软件包名称 卸载软件: brew uninstall 软件包名称 错误解决 问题1 ...
    99+
    2024-04-02
  • MacBook m1芯片采用miniforge安装python3.9的方法示例
    因为m1芯片是arm版本的架构,以前在mac上的很多软件都是基于Intel架构的软件,apple开发了rossta2,可以在m1上运行intel架构的软件,但是性能会有损失 pyth...
    99+
    2024-04-02
  • 【macOS】mac电脑M2芯片安装Homebrew 最简单的方法
    一 Homebrew的安装 打开终端,复制如下命令,按回车执行 M芯片和Intel芯片均可 中途可能需要你手动输入密码,输入完成回车即可(密码不可见 选择中科大或者清华镜像源 /bin/zsh -c "$(curl -fsSL h...
    99+
    2023-08-20
    macos 电脑 git homebrew
  • Python3.8安装tensorflow的简单方法步骤
    目录以下内容是针对安装tensorflow-CPU版本的。1.打开Anaconda promote2.创建tensorflow的虚拟环境。3.激活新建的TensorFlow环境,在命...
    99+
    2024-04-02
  • Anaconda安装pytorch和paddle的方法步骤
    目录NVIDIA驱动安装与更新Anaconda 的安装Pytorch环境安装NVIDIA驱动安装与更新 首先查看电脑的显卡版本,步骤为:此电脑右击–>管理&ndas...
    99+
    2024-04-02
  • Centos7安装MySQL8.0操作步骤(yum安装方法)
    1、下载和安装MySQL数据库 1、下载mysql库(要连网) wget https://repo.mysql.com//mysql80-community-release-el7-3.noarch.rpm 2、添加MySQLyum源 y...
    99+
    2023-09-02
    mysql linux 数据库
  • Tomcat安装shell脚本的方法步骤
    目录一、JAVA环境安装二、JAVA环境安装检测三、tomcat安装与启动四、tomcat启动检测五、脚本程序六、执行效果检验今天继续给大家介绍Linux运维相关知识,本文主要内容是...
    99+
    2024-04-02
  • nvm安装步骤及使用方法
    目录一、nvm说明二、nvm下载三、nvm安装一、nvm说明 nvm 主要是用来管理 nodejs 和 npm 版本的工具,可以用来切换不同版本的 nodejs。 nvm安装使用及常...
    99+
    2023-01-17
    nvm安装使用 nvm安装步骤
  • docker安装portainer方法详细步骤
    目录docker安装portainer详细步骤1. 搜索portainer镜像2. 拉取portainer镜像3. 启动portainer容器4. docker ps查看容器5. 浏...
    99+
    2022-11-13
    docker安装portainer docker portainer
  • Visual Studio安装git插件的方法步骤
    在Visual Studio 中使用git——什么是Git(一) 如果要使用git进行版本管理,其实使用git命令行工具就完全足够了,图形化工具(无论是git extentions,...
    99+
    2024-04-02
  • CentOS下安装netspeeder加速的方法步骤
    这篇文章主要讲解了“CentOS下安装netspeeder加速的方法步骤”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“CentOS下安装netspeeder加速的方法步骤”吧!安装步骤如下:...
    99+
    2023-06-10
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作