We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef3bc8b commit 91a8513Copy full SHA for 91a8513
scripts/install-zenml-dev.sh
@@ -66,6 +66,13 @@ install_integrations() {
66
67
uv pip install $PIP_ARGS -r integration-requirements.txt
68
rm integration-requirements.txt
69
+
70
+ # https://github.com/Kludex/python-multipart/pull/166
71
+ # There is an install conflict between multipart and python_multipart
72
+ # which causes our server to fail in case both are installed. We
73
+ # need to uninstall this library for now until the changes make it into
74
+ # fastapi and then need to bump the fastapi version to resolve this.
75
+ uv pip uninstall $PIP_ARGS multipart
76
}
77
78
set -x
0 commit comments