苹果Macbook Pro13 M1芯片安装Pillow的方法步骤
发布于 2022年 05月 06日 10:29
正确的安装
1、先安装packaging
1 | 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、执行下面这个命令,查看命令输出的是什么,输出的名字等下会用到
1 | 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、重命名
1 | 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、安装
1 | 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
这样安装以后会报下面的错误
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 | 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内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!