Compare commits

...

4 Commits

Author SHA1 Message Date
Hladu357 dd7dce09f5 ukol 5 2024-10-20 14:55:11 +02:00
Hladu357 85823e5e3f ukol 4 2024-10-19 21:05:37 +02:00
Hladu357 3362635612 ukol 3 2024-10-19 20:36:56 +02:00
Hladu357 74bc290387 added scipy 2024-10-19 20:36:24 +02:00
3 changed files with 204 additions and 155 deletions

View File

@ -9,7 +9,13 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
RUN pip install --upgrade pip && \
pip install jupyter notebook pandas numpy matplotlib
RUN pip install --upgrade pip
RUN pip install jupyter
RUN pip install notebook
RUN pip install pandas
RUN pip install numpy
RUN pip install matplotlib
RUN pip install scipy
RUN pip install numpy
CMD ["jupyter", "notebook", "--ip=0.0.0.0", "--allow-root", "--no-browser"]

View File

@ -5,10 +5,10 @@ or
docker build -t pst -f Dockerfile
## run
pacman -S slirp4netns && podman run --network=slirp4netns -p 8888:8888 pst
pacman -S slirp4netns && podman run --network=slirp4netns -p 8888:8888 -v $(pwd):/home/notebook pst pst
or
docker run -p 8888:8888 pst
K = 28
L = 8
M = ((K+L)*47)%11+1 = 10
M = ((K+L)*47)%11+1 = 10

File diff suppressed because one or more lines are too long