Skip to content
Snippets Groups Projects
Commit 3786f01c authored by Elian Loraux's avatar Elian Loraux
Browse files

clean install of spyder

parent bd496e67
No related branches found
No related tags found
No related merge requests found
FROM kasmweb/ubuntu-jammy-desktop:1.14.0 FROM kasmweb/core-debian-bookworm:1.15.0
USER root USER root
ENV STARTUPDIR /dockerstartup
RUN apt-get update RUN apt-get update
RUN apt-get upgrade -y RUN apt-get upgrade -y
RUN apt-get install spyder3 -y
ADD patch-spyder.sh /
RUN chmod +x /patch-spyder.sh
RUN /patch-spyder.sh
#RUN echo "if [ -d "$HOME" ]; then cp /etc/skel/.* $HOME; fi" > $STARTUPDIR/custom_startup.sh \ ENV INST_DIR=/install \
#& chmod +x $STARTUPDIR/custom_startup.sh INST_SCRIPTS="/install-spyder.sh"
# Copy install scripts
RUN mkdir $INST_DIR
COPY ./install-script/ $INST_DIR
# Run installations
RUN \
for SCRIPT in $INST_SCRIPTS; do \
bash ${INST_DIR}${SCRIPT} || exit 1; \
done
USER 1000 USER 1000
#!/usr/bin/env bash #!/usr/bin/env bash
# Installation de spyder3
apt-get install spyder3 -y
# Ce script resout un problème de Spyder 4.2.1 # Ce script resout un problème de Spyder 4.2.1
# La résolution de se problème ressort du poste stack overflow suivant # La résolution de se problème ressort du poste stack overflow suivant
# https://stackoverflow.com/questions/72114520/error-when-starting-spyder-on-ubuntu-22-04 # https://stackoverflow.com/questions/72114520/error-when-starting-spyder-on-ubuntu-22-04
......
#!/usr/bin/env bash
apt-get install spyder -y
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment