Strongly recommend to make a virtual env using uv first:
uv venvFirst install the PaddlePaddle package of your choice:
# CPU
uv pip install paddlepaddle==3.0.0 -i https://www.paddlepaddle.org.cn/packages/stable/cpu/
# gpu,requires GPU driver version ≥450.80.02 (Linux) or ≥452.39 (Windows)
uv pip install paddlepaddle-gpu==3.0.0 -i https://www.paddlepaddle.org.cn/packages/stable/cu118/
# gpu,requires GPU driver version ≥550.54.14 (Linux) or ≥550.54.14 (Windows)
uv pip install paddlepaddle-gpu==3.0.0 -i https://www.paddlepaddle.org.cn/packages/stable/cu126/Then you can use the automatic installation procedure based on pyproject.toml
uv pip install .Commit to your own branch.
git checkout -b first-nameor if the branch already exists
git checkout first-nameOnce it's decided we're ready to merge, from main:
git merge first-nameAfter your repository was pushed, you're ready to update your branch to main
git pull origin main