0

I have tried repeated attempts at installing the library gdk-pixbuf for Python 3.8/3.9 using conda, on a Windows 10 machine, and failed. Any help with fixing this is appreciated.

I get the following error messages and prompts every time:

enter image description here

enter image description here

enter image description here

Reinstalling Anaconda and recreating the Python env ("DSML") for Pythin 3.8 and 3.9 did not help. I also tried installing MinGW-w64 but that may be completely irrelevant. I tried reading about DLL entry points but it's all cryptic to me.

Kadri
  • 31
  • 8

1 Answers1

0

Sometimes channel mixing can cause such errors. Make sure libglib is installed from Conda Forge. This can force it:

conda install -n DSML -c conda-forge conda-forge::libglib

Also, you may need to install glib, not just libglib.

conda install -n DSML -c conda-forge conda-forge::glib

If the latter is the case, please post a bug report to the feedstock.

merv
  • 67,214
  • 13
  • 180
  • 245