Emil
March 28, 2020, 1:30pm
9
Yes, you can try to downgrade to 1.6.1 or you could build from source. Assuming that you are on Linux, you should be able to follow the steps sketched in this post,
I found out that this issue was related to my installed version of node being to old. To others, who would like to build from source, i would recommend to make sure that node is up to date,
After updating node, i was able to build with the following commands,
git clone git@github.com:plotly/dash.git
cd dash
git fetch origin pull/1103/head:pr-1103
git checkout pr-1103
python3 -m venv venv || virtualenv venv && . venv/bin/activate
sed -i '/dash-/d' requires-install.txt
pip install -e . --no-cā¦