-
Notifications
You must be signed in to change notification settings - Fork 386
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
problem when running build.sh #95
Comments
same problem, hope someone can help |
兄弟,你用我的方法吧,目前看起来对付能使 |
It work for me,but should change to |
Step 11/27 : RUN wget https://bootstrap.pypa.io/3.5/get-pip.py |
pip has dropped support for Python 2 and 3.5. You will need to use a version-specific branch, assuming that your Python version is 3.5: |
I found a problem when I run "bash build.sh" command, the bash told me
" ---> Running in c984724b830f
Traceback (most recent call last):
File "/usr/local/bin/pip3", line 7, in
from pip._internal.cli.main import main
File "/usr/local/lib/python3.5/dist-packages/pip/_internal/cli/main.py", line 60
sys.stderr.write(f"ERROR: {exc}")
^
SyntaxError: invalid syntax
The command '/bin/sh -c pip3 install numpy scipy pyyaml matplotlib' returned a non-zero code: 1"
Maybe we should using:
"RUN wget https://bootstrap.pypa.io/3.5/get-pip.py
RUN python3 get-pip.py"
to replace
"RUN apt-get -y install python3-pip"?
I made the replacement and it seems run normally, if I made the replacement will cause other problem or if there are better solution to solve the bug?
The text was updated successfully, but these errors were encountered: