Install Datapane
description: Installing and setting up the Datapane library and API on your device
Datapane's Python library and CLI can be installed using either conda
or pip
on macOS, Windows, or Linux. Datapane supports Python 3.6 - 3.10.
Info
Instructions for installing Python can be found at https://wiki.python.org/moin/BeginnersGuide/Download.
conda
If you use conda
, you can install it with:
Warning
Conda sometimes installs an older version of Datapane. If you receive errors, please check the version and try running conda update --all
or try in a new conda environment (conda create -n ENV
and conda activate ENV)
pip
If you use pip
, you can install it with:
Upgrading
We upgrade Datapane regularly to include new features, both in the client and on the hosted version. From time to time your client may no longer be compatible with the Datapane server when uploading an app. If this happens, you will receive an error like the following:
IncompatibleVersionError: Your client is out-of-date (version 0.9.2) and may be causing errors, "
please upgrade to version 0.10.2
In such an event, please upgrade your Datapane cli via pip
or conda
and try again.
Upgrading via pip
If you installed Datapane via pip, run the following command:
Upgrading via conda
If you installed datapane
via conda, run the following command, adding the --all
flag if needed. As above, if you receive errors please try using a fresh conda environment.
Windows Tips and Troubleshooting
We generally recommend installing via conda
over pip
on Windows as it's easier to install all the required dependencies.
If you need to install Python first, the latest versions of Windows 10 can install Python for you automatically - running python
from the command-prompt will take you to the Windows Store where you can download an official version. We also strongly recommend using a 64-bit rather than the 32-bit version of Python, you can check this by running the command python -c "import struct; print(struct.calcsize('P')*8, 'bit')"
from the Command Prompt.
Also note that on Windows, you can run the datapane
command either by running datapane
or datapane.exe
on the command-line.
Some specific issues you may encounter on Windows include:
Import errors when running/importing Datapane
You may encounter errors such as ImportError: DLL load failed
when running Datapane or importing it within your Python code.
If so, try installing the Visual C++ Redistributables for Windows from Microsoft and running again (you most likely want to download the version for x64, i.e. vc_redist.x64.exe
)
Datapane install errors trying to compile pyarrow
using Visual C++
This usually occurs when you are running a 32-bit version of Python and installing via pip
. Either try using conda
or install a 64-bit version of Python (for example from the Windows Store as mentioned above).
This may also occur when using Windows 7 - we only support directly Windows 10, however, it may be worth trying to install via conda
instead, if you are stuck on Windows 7.
'datapane.exe' is not recognized as an internal or external command
This occurs when your Windows %PATH%
doesn't include all the Python directories, specifically the Scripts
directory.
You may notice during the Datapane install messages such as (or similar to):
The script datapane.exe is installed in 'C:\users\<USERNAME>\appdata\local\programs\python\python37\Scripts' which is not on PATH.
Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
To fix this, adjust your %PATH%
to include your specific Scripts
path as mentioned in the pip
warning (see https://datatofish.com/add-python-to-windows-path/ for more detailed instructions). Alternatively, you can try running the Datapane client directly, using the command python3.exe -m datapane.client
instead.
Info
If you are still having problems installing, please ask on our Datapane Discord server, and someone will come to help you.