Error message in Pycharm running geopandas module. How do I fix this?

0

I get this error message:

Process finished with exit code -1073741819 (0xC0000005)

when running this:

import geopandas as gpd
import matplotlib.pyplot as plt

# File path
fp = r"data/Corine2012_Uusimaa.shp"
data = gpd.read_file(fp)

I have Python 3.6 installed and geopandas 0.3.0 for various versions of python. Geopandas was installed using: conda install -c conda-forge geopandas. I am using PyCharm Community 2018.1.2

When I run this using Spyder at home it is fine. Any ideas on how to fix this? I had a search for the error codes online, but didn't find anything that matched.

python
pycharm
geopandas
asked on Stack Overflow Oct 28, 2018 by wl1234

0 Answers

Nobody has answered this question yet.


User contributions licensed under CC BY-SA 3.0