You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was. In production image there is a paddle cmd script added to PATH, and it's executed by default as "paddle version" to print paddle version if no training script is provided.
the issue is due to the cmd script's syntax issue and one version detecting logic issue, which are fixed within above PR.
I built my own production image with dockerfile from build directory. When I try to run this image, the default command throws error as follows:
looks like the there are some syntax issues, as well as version detecting issue.
and turnd out this line:
INSTALLED_VERSION=`pip freeze 2>/dev/null | grep "^paddle" | sed 's/.*==//g'`
is hitting both
paddlepaddle
andpaddlepaddle-gpu
, which broke the rest of execution.The text was updated successfully, but these errors were encountered: