Ubuntu 19용 libpng 버전 1.6을 설치하시겠습니까?

Ubuntu 19용 libpng 버전 1.6을 설치하시겠습니까?

libpngPacket Tracer 7.2.1을 열 수 있도록 Ubuntu 19를 설치하는 방법은 무엇입니까 ?

답변1

질문이 설치 방법에 관한 것이라면 libpng16터미널을 열고 다음을 실행하십시오.

sudo apt install libpng16-16

이는 Ubuntu 19.04(Disco) 및 19.10(Eoan) 모두에서 작동합니다. 두 버전 모두 libpng16-16패키지가 포함되어 있기 때문입니다.저장소.

답변2

Ubuntu 18.04에서 수행한 단계

  1. 패키지 검색 libpng:

    apt-cache search libpng
    

    다음 결과를 얻었습니다.

    libpng-dev - PNG library - development (version 1.6)
    libpng-tools - PNG library - tools (version 1.6)
    libpng16-16 - PNG library - runtime (version 1.6)
    fp-units-gfx - Free Pascal - graphics-library units dependency package
    fp-units-gfx-3.0.4 - Free Pascal - graphics-library units
    libpnglite0 - lightweight C library for loading and writing PNG images
    pngquant - Utilitaire d'optimisation d'images PNG (Portable Network Graphics)
    libpng++-dev - C++ interface to the PNG (Portable Network Graphics) library
    libpng-sixlegs-java - Sixlegs Java PNG Decoder
    libpng-sixlegs-java-doc - Documentation for Sixlegs Java PNG Decoder
    libpnglite-dev - lightweight C library for loading and writing PNG images
    ruby-oily-png - native mixin to speed up ChunkyPNG
    tkpng - PNG photo image support to Tcl/Tk
    
  2. 적절한 패키지를 설치하십시오.

    sudo apt install libpng16-16
    
  3. 기능 패키지 설치(선택 사항):

    sudo apt install libpng-tools
    

libpng-tools유용할 수 있지만 Packet Tracer를 실행하기 위해 반드시 설치해야 한다고 생각하지는 않습니다(그러나 고급 기능을 사용하려면 필수일 수도 있습니다).

주의: -cache옵션은 패키지 이름을 쉽게 제공합니다.

관련 정보