GDAL installation on MAC OSX via conda fails, linked due to Libpoppler and font configurationTrying to...

If human space travel is limited by the G force vulnerability, is there a way to counter G forces?

Why does Arabsat 6A need a Falcon Heavy to launch

Is "remove commented out code" correct English?

1960's book about a plague that kills all white people

Do I have a twin with permutated remainders?

Why can't we play rap on piano?

Why was the shrinking from 8″ made only to 5.25″ and not smaller (4″ or less)?

What does it mean to describe someone as a butt steak?

Could gravitational lensing be used to protect a spaceship from a laser?

Why is the 'in' operator throwing an error with a string literal instead of logging false?

Is it legal for company to use my work email to pretend I still work there?

Is it possible to create light that imparts a greater proportion of its energy as momentum rather than heat?

Took a trip to a parallel universe, need help deciphering

Has there ever been an airliner design involving reducing generator load by installing solar panels?

Why are electrically insulating heatsinks so rare? Is it just cost?

Where does SFDX store details about scratch orgs?

Why do I get two different answers for this counting problem?

Alternative to sending password over mail?

I Accidentally Deleted a Stock Terminal Theme

A reference to a well-known characterization of scattered compact spaces

CEO ridiculed me with gay jokes and grabbed me and wouldn't let go - now getting pushed out of company

What exploit are these user agents trying to use?

Emailing HOD to enhance faculty application

Watching something be written to a file live with tail



GDAL installation on MAC OSX via conda fails, linked due to Libpoppler and font configuration


Trying to Install on MAC OS Lion and getting Python error messageClean way to install gdaltools plugin for QGIS on OSXHow to have PostGIS 2.1 and the Python osgeo library installed together without compiling from source?Python pyModis installation give error on windows 10 using pip install pyModisCannot update GDAL on UbuntuFiona import error when updated to version 1.7using GDAL installed using homebrew from python on OSXGDAL conda install on Mac OS troubleGDAL import error in Python3.6Missing osgeo in QGIS 3.4 Madeira (macOS High Sierra)






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







0















When installing GDAL via Conda, install fails, on OSX Mojave and Python 3.7:



dlopen(/Users/tomkom/anaconda3/lib/python3.7/site-packages/osgeo/_gdal.cpython-37m-darwin.so, 2): Library not loaded: @rpath/libfontconfig.1.dylib
Referenced from: /Users/tomkom/anaconda3/lib/libpoppler.78.dylib
Reason: Incompatible library version: libpoppler.78.dylib requires version 14.0.0 or later, but libfontconfig.1.dylib provides version 13.0.0


I am unable to locate the cause. Installed using:



 conda install -c conda-forge gdal


As per standard.



The error seems to indicate issues with libpoppler and a font library (libfontconfig). I am unsure about the role of these libraries and how to update them.










share|improve this question

























  • i recommend installing your gis stack into a new environment: e.g., conda create --name=gis python=3.6 gdal geopandas rasterio ipykernel --channel=conda-forge

    – Paul H
    Mar 26 at 22:17











  • @PaulH Any suggestion why forcing python to a lower version? Mine is 3.7. I would need to install an older one... Also, why ipykernel?

    – MartinT
    Mar 26 at 22:52








  • 1





    Lower version: I'm not sure e.g. geopandas and rasterio are available on python 3.7 yet. Even if they are available for Python 3.7, since so much of the GIS stack is written in C, compiled, and linked together, it's definitely better to install everything at the same time, and from a single channel (I prefer conda-forge). You need the ipykernel to let the environment talk to whatever jupyer notebook or jupyter lab server you have running, if you have one running, which I recommend you do.

    – Paul H
    Mar 26 at 23:05






  • 1





    I just did a quick conda search for gdal and geopandas and python 3.7 builds are available. pick which ever python you want, but use a fresh environment in either case.

    – Paul H
    Mar 26 at 23:13











  • Thanks for the hints. A clean environment helped with a different downstream issue, yet standalone GDAL still has issues with the fonts. This is what I am waiting for as an answer - clarification why fonts should be a problem, how to resolve this issue, and why this happens now on Mojave, not before.

    – MartinT
    Apr 1 at 2:27


















0















When installing GDAL via Conda, install fails, on OSX Mojave and Python 3.7:



dlopen(/Users/tomkom/anaconda3/lib/python3.7/site-packages/osgeo/_gdal.cpython-37m-darwin.so, 2): Library not loaded: @rpath/libfontconfig.1.dylib
Referenced from: /Users/tomkom/anaconda3/lib/libpoppler.78.dylib
Reason: Incompatible library version: libpoppler.78.dylib requires version 14.0.0 or later, but libfontconfig.1.dylib provides version 13.0.0


I am unable to locate the cause. Installed using:



 conda install -c conda-forge gdal


As per standard.



The error seems to indicate issues with libpoppler and a font library (libfontconfig). I am unsure about the role of these libraries and how to update them.










share|improve this question

























  • i recommend installing your gis stack into a new environment: e.g., conda create --name=gis python=3.6 gdal geopandas rasterio ipykernel --channel=conda-forge

    – Paul H
    Mar 26 at 22:17











  • @PaulH Any suggestion why forcing python to a lower version? Mine is 3.7. I would need to install an older one... Also, why ipykernel?

    – MartinT
    Mar 26 at 22:52








  • 1





    Lower version: I'm not sure e.g. geopandas and rasterio are available on python 3.7 yet. Even if they are available for Python 3.7, since so much of the GIS stack is written in C, compiled, and linked together, it's definitely better to install everything at the same time, and from a single channel (I prefer conda-forge). You need the ipykernel to let the environment talk to whatever jupyer notebook or jupyter lab server you have running, if you have one running, which I recommend you do.

    – Paul H
    Mar 26 at 23:05






  • 1





    I just did a quick conda search for gdal and geopandas and python 3.7 builds are available. pick which ever python you want, but use a fresh environment in either case.

    – Paul H
    Mar 26 at 23:13











  • Thanks for the hints. A clean environment helped with a different downstream issue, yet standalone GDAL still has issues with the fonts. This is what I am waiting for as an answer - clarification why fonts should be a problem, how to resolve this issue, and why this happens now on Mojave, not before.

    – MartinT
    Apr 1 at 2:27














0












0








0








When installing GDAL via Conda, install fails, on OSX Mojave and Python 3.7:



dlopen(/Users/tomkom/anaconda3/lib/python3.7/site-packages/osgeo/_gdal.cpython-37m-darwin.so, 2): Library not loaded: @rpath/libfontconfig.1.dylib
Referenced from: /Users/tomkom/anaconda3/lib/libpoppler.78.dylib
Reason: Incompatible library version: libpoppler.78.dylib requires version 14.0.0 or later, but libfontconfig.1.dylib provides version 13.0.0


I am unable to locate the cause. Installed using:



 conda install -c conda-forge gdal


As per standard.



The error seems to indicate issues with libpoppler and a font library (libfontconfig). I am unsure about the role of these libraries and how to update them.










share|improve this question
















When installing GDAL via Conda, install fails, on OSX Mojave and Python 3.7:



dlopen(/Users/tomkom/anaconda3/lib/python3.7/site-packages/osgeo/_gdal.cpython-37m-darwin.so, 2): Library not loaded: @rpath/libfontconfig.1.dylib
Referenced from: /Users/tomkom/anaconda3/lib/libpoppler.78.dylib
Reason: Incompatible library version: libpoppler.78.dylib requires version 14.0.0 or later, but libfontconfig.1.dylib provides version 13.0.0


I am unable to locate the cause. Installed using:



 conda install -c conda-forge gdal


As per standard.



The error seems to indicate issues with libpoppler and a font library (libfontconfig). I am unsure about the role of these libraries and how to update them.







python gdal conda






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 13 mins ago







MartinT

















asked Mar 26 at 6:11









MartinTMartinT

38919




38919













  • i recommend installing your gis stack into a new environment: e.g., conda create --name=gis python=3.6 gdal geopandas rasterio ipykernel --channel=conda-forge

    – Paul H
    Mar 26 at 22:17











  • @PaulH Any suggestion why forcing python to a lower version? Mine is 3.7. I would need to install an older one... Also, why ipykernel?

    – MartinT
    Mar 26 at 22:52








  • 1





    Lower version: I'm not sure e.g. geopandas and rasterio are available on python 3.7 yet. Even if they are available for Python 3.7, since so much of the GIS stack is written in C, compiled, and linked together, it's definitely better to install everything at the same time, and from a single channel (I prefer conda-forge). You need the ipykernel to let the environment talk to whatever jupyer notebook or jupyter lab server you have running, if you have one running, which I recommend you do.

    – Paul H
    Mar 26 at 23:05






  • 1





    I just did a quick conda search for gdal and geopandas and python 3.7 builds are available. pick which ever python you want, but use a fresh environment in either case.

    – Paul H
    Mar 26 at 23:13











  • Thanks for the hints. A clean environment helped with a different downstream issue, yet standalone GDAL still has issues with the fonts. This is what I am waiting for as an answer - clarification why fonts should be a problem, how to resolve this issue, and why this happens now on Mojave, not before.

    – MartinT
    Apr 1 at 2:27



















  • i recommend installing your gis stack into a new environment: e.g., conda create --name=gis python=3.6 gdal geopandas rasterio ipykernel --channel=conda-forge

    – Paul H
    Mar 26 at 22:17











  • @PaulH Any suggestion why forcing python to a lower version? Mine is 3.7. I would need to install an older one... Also, why ipykernel?

    – MartinT
    Mar 26 at 22:52








  • 1





    Lower version: I'm not sure e.g. geopandas and rasterio are available on python 3.7 yet. Even if they are available for Python 3.7, since so much of the GIS stack is written in C, compiled, and linked together, it's definitely better to install everything at the same time, and from a single channel (I prefer conda-forge). You need the ipykernel to let the environment talk to whatever jupyer notebook or jupyter lab server you have running, if you have one running, which I recommend you do.

    – Paul H
    Mar 26 at 23:05






  • 1





    I just did a quick conda search for gdal and geopandas and python 3.7 builds are available. pick which ever python you want, but use a fresh environment in either case.

    – Paul H
    Mar 26 at 23:13











  • Thanks for the hints. A clean environment helped with a different downstream issue, yet standalone GDAL still has issues with the fonts. This is what I am waiting for as an answer - clarification why fonts should be a problem, how to resolve this issue, and why this happens now on Mojave, not before.

    – MartinT
    Apr 1 at 2:27

















i recommend installing your gis stack into a new environment: e.g., conda create --name=gis python=3.6 gdal geopandas rasterio ipykernel --channel=conda-forge

– Paul H
Mar 26 at 22:17





i recommend installing your gis stack into a new environment: e.g., conda create --name=gis python=3.6 gdal geopandas rasterio ipykernel --channel=conda-forge

– Paul H
Mar 26 at 22:17













@PaulH Any suggestion why forcing python to a lower version? Mine is 3.7. I would need to install an older one... Also, why ipykernel?

– MartinT
Mar 26 at 22:52







@PaulH Any suggestion why forcing python to a lower version? Mine is 3.7. I would need to install an older one... Also, why ipykernel?

– MartinT
Mar 26 at 22:52






1




1





Lower version: I'm not sure e.g. geopandas and rasterio are available on python 3.7 yet. Even if they are available for Python 3.7, since so much of the GIS stack is written in C, compiled, and linked together, it's definitely better to install everything at the same time, and from a single channel (I prefer conda-forge). You need the ipykernel to let the environment talk to whatever jupyer notebook or jupyter lab server you have running, if you have one running, which I recommend you do.

– Paul H
Mar 26 at 23:05





Lower version: I'm not sure e.g. geopandas and rasterio are available on python 3.7 yet. Even if they are available for Python 3.7, since so much of the GIS stack is written in C, compiled, and linked together, it's definitely better to install everything at the same time, and from a single channel (I prefer conda-forge). You need the ipykernel to let the environment talk to whatever jupyer notebook or jupyter lab server you have running, if you have one running, which I recommend you do.

– Paul H
Mar 26 at 23:05




1




1





I just did a quick conda search for gdal and geopandas and python 3.7 builds are available. pick which ever python you want, but use a fresh environment in either case.

– Paul H
Mar 26 at 23:13





I just did a quick conda search for gdal and geopandas and python 3.7 builds are available. pick which ever python you want, but use a fresh environment in either case.

– Paul H
Mar 26 at 23:13













Thanks for the hints. A clean environment helped with a different downstream issue, yet standalone GDAL still has issues with the fonts. This is what I am waiting for as an answer - clarification why fonts should be a problem, how to resolve this issue, and why this happens now on Mojave, not before.

– MartinT
Apr 1 at 2:27





Thanks for the hints. A clean environment helped with a different downstream issue, yet standalone GDAL still has issues with the fonts. This is what I am waiting for as an answer - clarification why fonts should be a problem, how to resolve this issue, and why this happens now on Mojave, not before.

– MartinT
Apr 1 at 2:27










1 Answer
1






active

oldest

votes


















-1














Maybe this tutorial may help you.



https://hackernoon.com/install-python-gdal-using-conda-on-mac-8f320ca36d90






share|improve this answer













We're looking for long answers that provide some explanation and context. Don't just give a one-line answer; explain why your answer is right, ideally with citations. Answers that don't include explanations may be removed.










  • 2





    Links rot. Therefore you should summarize what's in the link. Otherwise this is a low quality answer and should be a comment.

    – Paul H
    Mar 26 at 23:04












Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "79"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f316682%2fgdal-installation-on-mac-osx-via-conda-fails-linked-due-to-libpoppler-and-font%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









-1














Maybe this tutorial may help you.



https://hackernoon.com/install-python-gdal-using-conda-on-mac-8f320ca36d90






share|improve this answer













We're looking for long answers that provide some explanation and context. Don't just give a one-line answer; explain why your answer is right, ideally with citations. Answers that don't include explanations may be removed.










  • 2





    Links rot. Therefore you should summarize what's in the link. Otherwise this is a low quality answer and should be a comment.

    – Paul H
    Mar 26 at 23:04
















-1














Maybe this tutorial may help you.



https://hackernoon.com/install-python-gdal-using-conda-on-mac-8f320ca36d90






share|improve this answer













We're looking for long answers that provide some explanation and context. Don't just give a one-line answer; explain why your answer is right, ideally with citations. Answers that don't include explanations may be removed.










  • 2





    Links rot. Therefore you should summarize what's in the link. Otherwise this is a low quality answer and should be a comment.

    – Paul H
    Mar 26 at 23:04














-1












-1








-1







Maybe this tutorial may help you.



https://hackernoon.com/install-python-gdal-using-conda-on-mac-8f320ca36d90






share|improve this answer













Maybe this tutorial may help you.



https://hackernoon.com/install-python-gdal-using-conda-on-mac-8f320ca36d90







share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 26 at 6:39









DanielDaniel

645




645



We're looking for long answers that provide some explanation and context. Don't just give a one-line answer; explain why your answer is right, ideally with citations. Answers that don't include explanations may be removed.




We're looking for long answers that provide some explanation and context. Don't just give a one-line answer; explain why your answer is right, ideally with citations. Answers that don't include explanations may be removed.









  • 2





    Links rot. Therefore you should summarize what's in the link. Otherwise this is a low quality answer and should be a comment.

    – Paul H
    Mar 26 at 23:04














  • 2





    Links rot. Therefore you should summarize what's in the link. Otherwise this is a low quality answer and should be a comment.

    – Paul H
    Mar 26 at 23:04








2




2





Links rot. Therefore you should summarize what's in the link. Otherwise this is a low quality answer and should be a comment.

– Paul H
Mar 26 at 23:04





Links rot. Therefore you should summarize what's in the link. Otherwise this is a low quality answer and should be a comment.

– Paul H
Mar 26 at 23:04


















draft saved

draft discarded




















































Thanks for contributing an answer to Geographic Information Systems Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f316682%2fgdal-installation-on-mac-osx-via-conda-fails-linked-due-to-libpoppler-and-font%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Щит и меч (фильм) Содержание Названия серий | Сюжет |...

is 'sed' thread safeWhat should someone know about using Python scripts in the shell?Nexenta bash script uses...

Meter-Bus Содержание Параметры шины | Стандартизация |...