Python package not found issue

--

Below are from [1] to help locate the python package location:

When you install using conda install -c conda-forge folium, the package will be placed in:

./anaconda3/envs/[name env]/lib/python3.7/site-packages/folium

When you install using pip (with a anaconda env activated), pip install folium, the package will be placed in:

./anaconda3/lib/python3.7/site-packages/folium

Reference

[1]https://stackoverflow.com/questions/39811929/package-installed-by-conda-python-cannot-find-it

--

--

No responses yet