nginx-module-image-filter를 설치할 수 없습니다

nginx-module-image-filter를 설치할 수 없습니다

Ubuntu 20.04 서버를 실행 중인데 실행하는 동안 오류가 발생했습니다 apt install nginx-module-image-filter.

The following packages have unmet dependencies:
nginx-module-image-filter : Depends: nginx-r1.18.0

달리기 nginx -v:

nginx version: nginx/1.18.0 (Ubuntu)

답변1

nginx는 시스템에 apt와 함께 설치되지 않고 대신 다운로드 가능한 아카이브에서 설치된 것 같습니다. 다음을 통해 패키지의 로컬 가용성과 버전을 확인할 수 있습니다.dpkg -l | grep nginx

가능하다면 계속하기 전에 apt로 nginx를 다시 설치하는 것이 좋습니다.

또는 --ignore-missing을 사용하여 오류를 무시할 수도 있습니다(참조:apt의 매뉴얼 페이지) nginx의 설치가 nginx 패키지를 통해 수행되었다고 확신하는 경우.

관련 정보