Skip to content

Commit

Permalink
Merge pull request #223 from ClickHouse/break-system-packages
Browse files Browse the repository at this point in the history
Add `--break-system-packages` to 'pip install'
  • Loading branch information
rschu1ze authored Sep 12, 2024
2 parents 9a18d9d + f04beca commit 6fef854
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion chdb-dataframe/benchmark.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

sudo apt-get update
sudo apt-get install -y python3-pip
pip install pandas chdb
pip install --break-system-packages pandas chdb

# Download the data
wget --no-verbose --continue https://datasets.clickhouse.com/hits_compatible/athena/hits.parquet
Expand Down
2 changes: 1 addition & 1 deletion chdb-parquet/benchmark.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

sudo apt-get update
sudo apt-get install -y python3-pip
pip install chdb psutil
pip install --break-system-packages chdb psutil

# Load the data
seq 0 99 | xargs -P100 -I{} bash -c 'wget --no-verbose --continue https://datasets.clickhouse.com/hits_compatible/athena_partitioned/hits_{}.parquet'
Expand Down
2 changes: 1 addition & 1 deletion chdb/benchmark.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Install
sudo apt-get update
sudo apt-get install -y python3-pip
pip install chdb psutil
pip install --break-system-packages chdb psutil

# Load the data
wget --no-verbose --continue 'https://datasets.clickhouse.com/hits_compatible/hits.csv.gz'
Expand Down
2 changes: 1 addition & 1 deletion cloudberry/benchmark.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ elif [[ $1 == 'db-install' ]]; then
yum install https://cdn.amazonlinux.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/4846e71174e99f1b7f0985aa01631de003633d3a5f1a950812323c175214ae16/xerces-c-3.1.1-10.amzn2.x86_64.rpm
yum install https://cdn.amazonlinux.com/2/core/2.0/x86_64/6b0225ccc542f3834c95733dcf321ab9f1e77e6ca6817469771a8af7c49efe6c/../../../../../blobstore/53208ffe95cd1e38bba94984661e79134b3cc1b039922e828c40df7214ecaee8/xerces-c-devel-3.1.1-10.amzn2.x86_64.rpm

pip install PygreSQL psutil
pip install --break-system-packages PygreSQL psutil
if [[ $2 != 'no_dl' ]]; then wget https://github.com/cloudberrydb/cloudberrydb/archive/refs/tags/1.5.3.tar.gz; fi
tar -xzf 1.5.3.tar.gz
cd cloudberrydb-1.5.3/
Expand Down
2 changes: 1 addition & 1 deletion duckdb-dataframe/benchmark.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

sudo apt-get update
sudo apt-get install -y python3-pip
pip install pandas duckdb
pip install --break-system-packages pandas duckdb

# Download the data
wget --no-verbose --continue https://datasets.clickhouse.com/hits_compatible/athena/hits.parquet
Expand Down
2 changes: 1 addition & 1 deletion duckdb-parquet/benchmark.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

sudo apt-get update
sudo apt-get install -y python3-pip
pip install duckdb psutil
pip install --break-system-packages duckdb psutil

# Load the data
seq 0 99 | xargs -P100 -I{} bash -c 'wget --no-verbose --continue https://datasets.clickhouse.com/hits_compatible/athena_partitioned/hits_{}.parquet'
Expand Down
2 changes: 1 addition & 1 deletion duckdb/benchmark.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

sudo apt-get update
sudo apt-get install -y python3-pip
pip install duckdb psutil
pip install --break-system-packages duckdb psutil

# Load the data

Expand Down
2 changes: 1 addition & 1 deletion motherduck/benchmark.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

sudo apt-get update
sudo apt-get install -y python3-pip
pip install duckdb psutil
pip install --break-system-packages duckdb psutil

# Load the data

Expand Down
2 changes: 1 addition & 1 deletion pandas/benchmark.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

sudo apt-get update
sudo apt-get install -y python3-pip
pip install pandas
pip install --break-system-packages pandas

# Download the data
wget --no-verbose --continue https://datasets.clickhouse.com/hits_compatible/athena/hits.parquet
Expand Down
2 changes: 1 addition & 1 deletion polars/benchmark.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

sudo apt-get update
sudo apt-get install -y python3-pip
pip install pandas polars
pip install --break-system-packages pandas polars

# Download the data
wget --no-verbose --continue https://datasets.clickhouse.com/hits_compatible/athena/hits.parquet
Expand Down

0 comments on commit 6fef854

Please sign in to comment.