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
{{ message }}
This repository has been archived by the owner on Aug 15, 2023. It is now read-only.
The newest image with python3.8 as default is currently used. However we could update to the newer miniconda image and create a python3.8 environment in the following way
FROM continuumio/miniconda3:4.10.3 as dependencies
# base image is python 3.9 but python 3.8 is needed for Cubit
# this creates and activates a new python 3.8 conda enviroment
RUN conda create --name py38 python=3.8
RUN echo "conda activate py38" >> ~/.bashrc
SHELL ["/bin/bash", "--login", "-c"]
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The newest image with python3.8 as default is currently used. However we could update to the newer miniconda image and create a python3.8 environment in the following way
The text was updated successfully, but these errors were encountered: