We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28d191d commit 7cd1502Copy full SHA for 7cd1502
1 file changed
paddle/scripts/paddle_build.sh
@@ -1181,9 +1181,9 @@ function generate_api_spec() {
1181
pip install -r ${PADDLE_ROOT}/python/requirements.txt
1182
fi
1183
if [ -d "${PADDLE_ROOT}/build/python/dist/" ]; then
1184
- pip --no-cache-dir install ${PADDLE_ROOT}/build/python/dist/*whl
+ pip install ${PADDLE_ROOT}/build/python/dist/*whl
1185
elif [ -d "${PADDLE_ROOT}/dist/" ];then
1186
- pip --no-cache-dir install ${PADDLE_ROOT}/dist/*whl
+ pip install ${PADDLE_ROOT}/dist/*whl
1187
mkdir ${PADDLE_ROOT}/build/python/dist/ && mv ${PADDLE_ROOT}/dist/*whl ${PADDLE_ROOT}/build/python/dist/
1188
1189
spec_path=${PADDLE_ROOT}/paddle/fluid/API_${spec_kind}.spec
0 commit comments