mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-21 01:01:05 +08:00
f97b18ec9d
* allow decoding b64 string without headers * install gradio-client in edittable mode * update GH actions * add test for decoding headerless b64 * add test for decoding headerless b64 image * some linting * fix test --------- Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
12 lines
187 B
Bash
12 lines
187 B
Bash
#!/bin/bash
|
|
|
|
cd "$(dirname ${0})/.."
|
|
source scripts/helpers.sh
|
|
|
|
pip_required
|
|
|
|
echo "Installing Gradio..."
|
|
pip install -e .
|
|
|
|
echo "Installing Gradio Client..."
|
|
pip install -e client/python |