Skip to content

Commit

Permalink
Remove "python-pip" packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcamiel authored and lepapareil committed Dec 30, 2024
1 parent 14a1463 commit fb7f2b8
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 9 deletions.
1 change: 0 additions & 1 deletion bin/install_prerequisites_alpine.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ apk add --quiet \
openssl-dev \
python3 \
python3-dev \
py3-pip \
cargo \
squid \
jq
Expand Down
6 changes: 3 additions & 3 deletions bin/install_prerequisites_archlinux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ pacman -Syu --noconfirm \
expect \
openssl \
python3 \
python-pip \
python-lxml \
icu \
base-devel \
Expand All @@ -18,8 +17,9 @@ pacman -Syu --noconfirm \
openbsd-netcat \
squid \
jq
# Temporary install to patch a python3/pip crash
pacman -Syu --noconfirm expat
sudo squid -k shutdown || true
sudo rm -v /dev/shm/squid*.shm >/dev/null 2>&1 || true

# Temporary install to patch a python3/pip crash
pacman -Syu --noconfirm expat

2 changes: 1 addition & 1 deletion bin/install_prerequisites_ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ sudo DEBIAN_FRONTEND=noninteractive apt-get -y install \
expect \
curl \
net-tools \
build-essential \
g++-aarch64-linux-gnu \
libc6-dev-arm64-cross \
libxml2-dev \
Expand All @@ -22,7 +23,6 @@ sudo DEBIAN_FRONTEND=noninteractive apt-get -y install \
libxml2-dev \
libssl-dev \
python3 \
python3-pip \
python3-venv \
netcat-openbsd \
squid \
Expand Down
2 changes: 0 additions & 2 deletions bin/install_prerequisites_windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ if ($LASTEXITCODE) { Throw }
# install python 3.11
choco install --confirm python311
if ($LASTEXITCODE) { Throw }
python3 -m pip install --upgrade pip --quiet
if ($LASTEXITCODE) { Throw }

# install proxy
echo "==== install Squid"
Expand Down
1 change: 0 additions & 1 deletion bin/install_pythonx_for_ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,4 @@ sudo DEBIAN_FRONTEND=noninteractive apt-get -y install \
python3."${python_version}"-venv
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3."${python_version}" 1 || true
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3."${python_version}" 1 || true
sudo curl -sS https://bootstrap.pypa.io/get-pip.py | python3."${python_version}"

2 changes: 1 addition & 1 deletion contrib/windows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Install git, llvm, nsis and python3

```pwsh
choco install --confirm --no-progress git winlibs-llvm-free nsis
choco install --confirm --no-progress python3 --version "3.9.13"
choco install --confirm --no-progress python311
python -m pip install --upgrade pip --quiet
```

Expand Down

0 comments on commit fb7f2b8

Please sign in to comment.