-
Notifications
You must be signed in to change notification settings - Fork 821
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
fix the path of requirements.txt #7216
base: develop
Are you sure you want to change the base?
Conversation
fix the path of requirements.txt
感谢你贡献飞桨文档,文档预览构建中,Docs-New 跑完后即可预览,预览链接:http://preview-pr-7216.paddle-docs-preview.paddlepaddle.org.cn/documentation/docs/zh/api/index_cn.html |
|
``` | ||
pip3.10 install -r /paddle/requirements.txt | ||
pip3.10 install -r ./python/requirements.txt | ||
``` |
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.
同学好,同学你在Docker中测试运行了吗?
上面👆🏻刚新建的目录 /paddle/build
应该是空的,所以 ./python/requirements.txt
文件是不存在的
应该是这个文件/paddle/python/requirements.txt
https://github.com/PaddlePaddle/Paddle/blob/develop/python/requirements.txt
下面的文档也是一样,需要注意是否是在Docker中运行,paddle
目录的位置以及其他相对路径等问题
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.
sorry疏忽了,稍后会提交验证后的版本
fix the issue
#7196