-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Fix invalid paddle binary file path #3421
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 2 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
dfc86dd
Fix invalid paddle binary file path
Yancey0623 98255dc
update
Yancey0623 a87b82c
update
Yancey0623 d6bd503
merge develop branch
Yancey0623 98b35ab
fix paddle bin directory
Yancey0623 d98e2d5
update install doc
Yancey0623 5c926b0
update
Yancey0623 a872e33
update
Yancey0623 ec9ac91
update
Yancey0623 3565518
update
Yancey0623 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PADDLE_BIN_PATHshould also check if binaries are under/usr/local/opt/...As mentioned by @tensor-tang, you can change the binaries installation dir in
setup.py.inbut either way is OK, it's up to you.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As the comment #3421 (comment), may be
date_filesdoes not support the real absolute path...I'm not sure why we also need to check
/usr/local/opt/...,*.whlwill never install binary file under/usr/local/opt/...There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I try to correct this path in other PR #3461
It may fix your issue, if works.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cool, thanks @tensor-tang , it works correctly. But for my test, the
directoryshould be configured asopt/paddle/binand the binary files will be installed under/usr/local/opt/paddle/bin.Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
which means your sys.prefix is
/usr/local? That's weird.Or some var were set in your env, before
pip install?Could you please check
print sys.prefix? I tried login as root and user. The result are both/usr.BTW my OS CentOS7.2.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep, it's also confusing for me,
print sys.prefixwill print/usr.root@6a4bc12ae305:/# python -c "import sys; print sys.prefix" /usrI executed
pip install *.whlin production Docker image, the base image isubuntu:16.04.And if the data_files was configured as
local/opt/paddle/bin, the binary files would be installed under/usr/local/local/opt/paddle/bin, the duplicatelocaldirectory.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you try
pip install --prefix='/usr' *.whlin docker?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep, if I specify the
--prefix='/usr', paddle will be installed under/usr.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @Yancey1989