-
Hi: I've been struggling to get localtileserver working through a conda 3.9 python environment on Windows 10 in a jupyter notebook. As soon as I try to import localtileserver, I get DLL import errors: I'm not certain how to fix this problem, so any advice will be appreciated! -Darren |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
How did you install rasterio? Try creating a fresh conda env to install rasterio. conda create -n geo python=3.9
conda activate geo
conda install -c conda-forge mamba
mamba install -c conda-forge rasterio localtileserver |
Beta Was this translation helpful? Give feedback.
-
Thanks for your reply! I created the virtual python 3.9 environment through conda. To install localtileserver (and dependencies) I also used conda: |
Beta Was this translation helpful? Give feedback.
Great news... I was able to get the localtileserver v010.0rc2 package installed and working in a Python 3.9 venv running on my Windows 10, 64-bit computer!
I had some trouble when I first tried to install v010.0rc2... I was at the office, behind our firewall. Once I was home and off our network the install worked without a problem. I used the localtileserver-0.10.0rc2-py3-none-any.whl file I downloaded from your GitHub (I had downloaded the wheel while at work, after the regular pip install failed).
After confirming I had localtileserver working using the San Francisco example, I tried one of my own small *.tif files, and it worked. Next, I loaded a near 2 GB tif... I'm very impressed wit…