CentOS 7에 libgdiplus를 설치하는 방법은 무엇입니까?

CentOS 7에 libgdiplus를 설치하는 방법은 무엇입니까?

CentOS 7에 libgdiplus를 설치해야 합니다. 내가 실행 중인 애플리케이션에는 이 패키지가 필요합니다.

다음 명령을 사용하여 Ubuntu에 설치할 수 있습니다.

sudo apt-get install libgdiplus

하지만 CentOS에서 다음 명령을 실행하면 패키지를 찾을 수 없다는 메시지가 나타납니다.

sudo yum install libgdiplus

답변1

다음을 사용하여 이러한 패키지를 검색할 수 있습니다.

  • yum whatprovides libgdiplus

출력에는 다음이 표시됩니다 libgdiplus-2.10-9.el7.x86_64 : An Open Source implementation of the GDI+ API.

그런 다음 다음을 실행할 수 있습니다.yum install -y libgdiplus-2.10-9.el7.x86_64

EPEL@Knud Larsen이 언급했듯이 미리 패키지 저장소를 설치 해야 합니다 . 이렇게 하려면 다음을 실행할 수 있습니다.

yum install -y epel-release

답변2

libgdipluslibgdiplus-devel: 둘 다 EL7에 가장 일반적으로 사용되는 추가 저장소인 epel.repo → "Enterprise Linux용 추가 패키지"에 있습니다.

https://fedoraproject.org/wiki/EPEL→ →https://fedoraproject.org/wiki/EPEL/FAQ#How_can_I_install_the_packages_from_the_EPEL_software_repository.3F

su -c 'rpm -Uvh http://download.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-8.noarch.rpm'

답변3

sudo yum install mono-complete -y

관련 정보