We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug A clear and concise description of what the bug is.
The newest condo includes python3.10. When installing numpy=1.21.2, requires maximum python version is 3.9.
To Reproduce Steps to reproduce the behavior:
Expected behavior A clear and concise description of what you expected to happen.
RUN wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh && bash Miniconda3-latest-Linux-x86_64.sh -b && rm Miniconda3-latest-Linux-x86_64.sh
Should be changed to: RUN wget https://repo.anaconda.com/miniconda/Miniconda3-py39_23.1.0-1-Linux-x86_64.sh && bash Miniconda3-py39_23.1.0-1-Linux-x86_64.sh -b && rm Miniconda3-py39_23.1.0-1-Linux-x86_64.sh
Screenshots If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Smartphone (please complete the following information):
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Many thanks! We adopt your suggestion and fix it accordingly in #536 .
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Describe the bug
A clear and concise description of what the bug is.
The newest condo includes python3.10. When installing numpy=1.21.2, requires maximum python version is 3.9.
To Reproduce
Steps to reproduce the behavior:
docker build -f environment/docker_files/federatedscope-torch1.10.Dockerfile -t alibaba/federatedscope:base-env-torch1.10 .
python version = 3.10
numpy=1.21.2 required version is python <= 3.9
Expected behavior
A clear and concise description of what you expected to happen.
RUN wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
&& bash Miniconda3-latest-Linux-x86_64.sh -b
&& rm Miniconda3-latest-Linux-x86_64.sh
Should be changed to:
RUN wget https://repo.anaconda.com/miniconda/Miniconda3-py39_23.1.0-1-Linux-x86_64.sh
&& bash Miniconda3-py39_23.1.0-1-Linux-x86_64.sh -b
&& rm Miniconda3-py39_23.1.0-1-Linux-x86_64.sh
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Smartphone (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: