This is repo containing materials for data dives series using Adzuna data.
The taining is going to be run in jupyter notebook
Please create new environmet for this lab using Python 3.7
Using Anaconda please install the following
#Create new environment
conda create --name myenv python=3.7
#Make sure that you are going to work in newly created environment
conda activate myenv
# Install jupyter lab
conda install jupyterlab -c conda-forge
# Install packages
conda install -c conda-forge geopandas
conda install -c conda-forge matplotlib
conda install -c conda-forge mapclassify
conda install -c conda-forge contextily
conda install -c conda-forge pyarrow
conda install -c conda-forge geoplot
conda install -c conda-forge seaborn
conda install -c conda-forge descartes
#Alternatively run the installation in one line
conda install -c conda-forge jupyterlab geopandas matplotlib mapclassify contextily pyarrow geoplot seaborn descartes
#Start the jupyter lab
jupyter lab
OSError: could not find or load spatialindex_c-64.dll error when trying to import geopandas
Solution
conda install -c conda-forge rtree=0.9.3