SciSharpCube icon indicating copy to clipboard operation
SciSharpCube copied to clipboard

Update the python (and debian) version

Open perllaghu opened this issue 6 years ago • 1 comments

Currently running on Stretch with python 3.5 An update to Buster would bring in Python 3.7 - which is useful as many nbextensions are written against python 3.6

My docker image for this starts:

RUN apt-get update
RUN sed -i 's/stretch/buster/g' /etc/apt/sources.list

RUN apt-get update \
  && apt-get upgrade -y \
  && apt-get dist-upgrade -y \
....
RUN update-alternatives --install /usr/bin/python python /usr/bin/python3.7 2
....

Running as root, the kernel starts as expected. (I've yet to test with a test notebook though)

perllaghu avatar Oct 31 '19 15:10 perllaghu

@perllaghu Could you PR ?

Oceania2018 avatar Oct 31 '19 19:10 Oceania2018