Skip to content

Commit 6c7a490

Browse files
authored
Update README.md with 5.0 info and GIFs (#9564)
* update gif * format * changes * readme * language
1 parent ffc33fa commit 6c7a490

File tree

13 files changed

+22
-22
lines changed

13 files changed

+22
-22
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![gradio-ui](https://github.com/gradio-app/gradio/actions/workflows/tests-js.yml/badge.svg)](https://github.com/gradio-app/gradio/actions/workflows/tests-js.yml)
99
[![PyPI](https://img.shields.io/pypi/v/gradio)](https://pypi.org/project/gradio/)
1010
[![PyPI downloads](https://img.shields.io/pypi/dm/gradio)](https://pypi.org/project/gradio/)
11-
![Python version](https://img.shields.io/badge/python-3.8+-important)
11+
![Python version](https://img.shields.io/badge/python-3.10+-important)
1212
[![Twitter follow](https://img.shields.io/twitter/follow/gradio?style=social&label=follow)](https://twitter.com/gradio)
1313

1414
[Website](https://gradio.app)
@@ -26,19 +26,19 @@
2626

2727
Gradio is an open-source Python package that allows you to quickly **build** a demo or web application for your machine learning model, API, or any arbitrary Python function. You can then **share** a link to your demo or web application in just a few seconds using Gradio's built-in sharing features. *No JavaScript, CSS, or web hosting experience needed!*
2828

29-
<img src="https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/gradio-guides/lcm-screenshot-3.gif" style="padding-bottom: 10px">
29+
<img src="https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/gradio-guides/gif-version.gif" style="padding-bottom: 10px">
3030

31-
It just takes a few lines of Python to create a beautiful demo like the one above, so let's get started 💫
31+
It just takes a few lines of Python to create your own demo, so let's get started 💫
3232

3333
### Installation
3434

35-
**Prerequisite**: Gradio requires [Python 3.8 or higher](https://www.python.org/downloads/)
35+
**Prerequisite**: Gradio 5 requires [Python 3.10 or higher](https://www.python.org/downloads/)
3636

3737

3838
We recommend installing Gradio using `pip`, which is included by default in Python. Run this in your terminal or command prompt:
3939

4040
```
41-
pip install gradio
41+
pip install --upgrade gradio
4242
```
4343

4444

client/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The Gradio client works with any Gradio Space, whether it be an image generator,
2525

2626
If you already have a recent version of `gradio`, then the `gradio_client` is included as a dependency.
2727

28-
Otherwise, the lightweight `gradio_client` package can be installed from pip (or pip3) and works with Python versions 3.8 or higher:
28+
Otherwise, the lightweight `gradio_client` package can be installed from pip (or pip3) and works with Python versions 3.10 or higher:
2929

3030
```bash
3131
$ pip install gradio_client

demo/hello_world_4/screenshot.gif

-839 KB
Loading

guides/01_getting-started/01_quickstart.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ It just takes a few lines of Python to create a demo like the one above, so let'
88

99
## Installation
1010

11-
**Prerequisite**: Gradio requires [Python 3.8 or higher](https://www.python.org/downloads/).
11+
**Prerequisite**: Gradio requires [Python 3.10 or higher](https://www.python.org/downloads/).
1212

1313

1414
We recommend installing Gradio using `pip`, which is included by default in Python. Run this in your terminal or command prompt:

guides/08_custom-components/01_custom-components-in-five-minutes.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# Custom Components in 5 minutes
22

3-
Gradio 4.0 introduces Custom Components -- the ability for developers to create their own custom components and use them in Gradio apps.
4-
You can publish your components as Python packages so that other users can use them as well.
5-
Users will be able to use all of Gradio's existing functions, such as `gr.Blocks`, `gr.Interface`, API usage, themes, etc. with Custom Components.
6-
This guide will cover how to get started making custom components.
3+
Gradio includes the ability for developers to create their own custom components and use them in Gradio apps.You can publish your components as Python packages so that other users can use them as well.
4+
5+
Users will be able to use all of Gradio's existing functions, such as `gr.Blocks`, `gr.Interface`, API usage, themes, etc. with Custom Components. This guide will cover how to get started making custom components.
76

87
## Installation
98

@@ -13,7 +12,7 @@ You will need to have:
1312
* pip 21.3+ (`python -m pip install --upgrade pip`)
1413
* Node.js v16.14+ (<a href="https://nodejs.dev/en/download/package-manager/" target="_blank">install here</a>)
1514
* npm 9+ (<a href="https://docs.npmjs.com/downloading-and-installing-node-js-and-npm/" target="_blank">install here</a>)
16-
* Gradio 4.0+ (`pip install --upgrade gradio`)
15+
* Gradio 5+ (`pip install --upgrade gradio`)
1716

1817
## The Workflow
1918

guides/08_custom-components/06_frequently-asked-questions.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Frequently Asked Questions
22

33
## What do I need to install before using Custom Components?
4-
Before using Custom Components, make sure you have Python 3.10+, Node.js v18+, npm 9+, and Gradio 4.0+ installed.
4+
5+
Before using Custom Components, make sure you have Python 3.10+, Node.js v18+, npm 9+, and Gradio 4.0+ (preferably Gradio 5.0+) installed.
56

67
## Are custom components compatible between Gradio 4.0 and 5.0?
78

guides/08_custom-components/07_pdf-component-example.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This is a sneak preview of what our finished component will look like:
77
![demo](https://gradio-builds.s3.amazonaws.com/assets/PDFDisplay.png)
88

99
## Step 0: Prerequisites
10-
Make sure you have gradio 4.0 installed as well as node 18+.
10+
Make sure you have gradio 4.0 or higher installed as well as node 18+.
1111
As of the time of publication, the latest release is 4.1.1.
1212
Also, please read the [Five Minute Tour](./custom-components-in-five-minutes) of custom components and the [Key Concepts](./key-component-concepts) guide before starting.
1313

guides/10_other-tutorials/deploying-gradio-with-docker.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ This app creates a simple interface that greets the user by name.
3535
Next, we'll create a Dockerfile to specify how our app should be built and run in a Docker container. Create a file named `Dockerfile` in the same directory as your app with the following content:
3636

3737
```dockerfile
38-
FROM python:3.8-slim
38+
FROM python:3.10-slim
3939

4040
WORKDIR /usr/src/app
4141
COPY . .
@@ -47,7 +47,7 @@ CMD ["python", "app.py"]
4747
```
4848

4949
This Dockerfile performs the following steps:
50-
- Starts from a Python 3.8 slim image.
50+
- Starts from a Python 3.10 slim image.
5151
- Sets the working directory and copies the app into the container.
5252
- Installs Gradio (you should install all other requirements as well).
5353
- Exposes port 7860 (Gradio's default port).

guides/10_other-tutorials/installing-gradio-in-a-virtual-environment.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Using virtual environments ensures that you can work on multiple Python projects
1616

1717
To install Gradio on a Windows system in a virtual environment, follow these steps:
1818

19-
1. **Install Python**: Ensure you have Python 3.8 or higher installed. You can download it from [python.org](https://www.python.org/). You can verify the installation by running `python --version` or `python3 --version` in Command Prompt.
19+
1. **Install Python**: Ensure you have Python 3.10 or higher installed. You can download it from [python.org](https://www.python.org/). You can verify the installation by running `python --version` or `python3 --version` in Command Prompt.
2020

2121

2222
2. **Create a Virtual Environment**:
@@ -62,7 +62,7 @@ The installation steps on MacOS and Linux are similar to Windows but with some d
6262
1. **Install Python**:
6363
Python usually comes pre-installed on MacOS and most Linux distributions. You can verify the installation by running `python --version` in the terminal (note that depending on how Python is installed, you might have to use `python3` instead of `python` throughout these steps).
6464

65-
Ensure you have Python 3.8 or higher installed. If you do not have it installed, you can download it from [python.org](https://www.python.org/).
65+
Ensure you have Python 3.10 or higher installed. If you do not have it installed, you can download it from [python.org](https://www.python.org/).
6666

6767
2. **Create a Virtual Environment**:
6868
Open Terminal and navigate to your project directory. Then create a virtual environment using:

guides/cn/01_getting-started/01_quickstart.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 快速开始
22

3-
**先决条件**:Gradio 需要 Python 3.8 或更高版本,就是这样!
3+
**先决条件**:Gradio 需要 Python 3.10 或更高版本,就是这样!
44

55
## Gradio 是做什么的?
66

readme_files/zh-cn/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[![gradio-js](https://github.com/gradio-app/gradio/actions/workflows/ui.yml/badge.svg)](https://github.com/gradio-app/gradio/actions/workflows/ui.yml)
1010
[![PyPI](https://img.shields.io/pypi/v/gradio)](https://pypi.org/project/gradio/)
1111
[![PyPI downloads](https://img.shields.io/pypi/dm/gradio)](https://pypi.org/project/gradio/)
12-
![Python version](https://img.shields.io/badge/python-3.8+-important)
12+
![Python version](https://img.shields.io/badge/python-3.10+-important)
1313
[![Twitter follow](https://img.shields.io/twitter/follow/gradio?style=social&label=follow)](https://twitter.com/gradio)
1414

1515
[官网](https://gradio.app)

readme_template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![gradio-ui](https://github.com/gradio-app/gradio/actions/workflows/ui.yml/badge.svg)](https://github.com/gradio-app/gradio/actions/workflows/ui.yml)
77
[![PyPI](https://img.shields.io/pypi/v/gradio)](https://pypi.org/project/gradio/)
88
[![PyPI downloads](https://img.shields.io/pypi/dm/gradio)](https://pypi.org/project/gradio/)
9-
![Python version](https://img.shields.io/badge/python-3.8+-important)
9+
![Python version](https://img.shields.io/badge/python-3.10+-important)
1010
[![Twitter follow](https://img.shields.io/twitter/follow/gradio?style=social&label=follow)](https://twitter.com/gradio)
1111

1212
[Website](https://gradio.app)

testing-guidelines/quality-strategy.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ All unspecified version segments (`x`) refer to latest.
9090

9191
| Software | Version(s) | Operating System(s) |
9292
| -------- | --------------------- | --------------------------------- |
93-
| Python | `3.8.x` | `ubuntu-latest`, `windows-latest` |
93+
| Python | `3.10.x` | `ubuntu-latest`, `windows-latest` |
9494
| Node | `18.x.x` | `ubuntu-latest` |
9595
| Browser | `playwright-chrome-x` | `ubuntu-latest` |
9696

0 commit comments

Comments
 (0)