Can't install paddle #14556
-
I tried to install with command below.
But kept getting error below. Looks like it is having issue download nvidia-cufft-cu12==11.2.1.3. Any workaround ?
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
The error you're encountering ( 1. Increase the
|
Beta Was this translation helpful? Give feedback.
-
Awesome! Increasing the pip timeout fixed it! |
Beta Was this translation helpful? Give feedback.
The error you're encountering (
ReadTimeoutError
when trying to download NVIDIA dependencies likenvidia-cufft-cu12
) suggests that your system is struggling to download the required wheel files from the PaddlePaddle-hosted repository. This could be caused by a slow or unstable internet connection or temporary server-side issues. Below are some potential workarounds:1. Increase the
pip
TimeoutBy default,
pip
has a timeout for downloads set to 15 seconds. You can increase this timeout to allow for slower connections. Try the following command:This increases the timeout to…