File: docker-deb-setup.sh

package info (click to toggle)
pyglossary 5.0.9-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,896 kB
  • sloc: python: 46,165; sh: 308; javascript: 100; xml: 42; makefile: 28
file content (22 lines) | stat: -rwxr-xr-x 453 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash

rm /etc/apt/apt.conf.d/docker-clean

set -e

apt-get update

apt-get install --yes python3
apt-get install --yes python3-pip
apt-get install --yes python3-lxml
apt-get install --yes python3-lzo
apt-get install --yes python3-icu
apt-get install --yes pkg-config

rm /usr/lib/python*/EXTERNALLY-MANAGED

pip3 install prompt_toolkit
pip3 install beautifulsoup4
pip3 install marisa-trie
pip3 install 'libzim>=1.0'
pip3 install 'mistune==3.0.1'