Appdaemon 0.13.0 and curl-dev

Hi all.

Has anyone worked out how to install curl-dev in appdaemon 0.13.0?

It’s failing with some mismatched dependencies.

ERROR: unable to select packages:
  libcurl-8.0.1-r2:
    breaks: curl-dev-8.1.0-r0[libcurl=8.1.0-r0]
    satisfies: world[libcurl]
               curl-8.0.1-r2[libcurl=8.0.1-r2]
               curl-8.0.1-r2[so:libcurl.so.4]
[20:51:05] FATAL: Failed installing package curl-dev
1 Like

I managed to fix this by forcing an upgrade of the curl and libcurl libraries in AppDaemon, add the versions below to your configuration to force the update.

system_packages:
  - curl>=8.1.0
  - libcurl>=8.1.0

Thanks I couldn’t work out how to do that!