Skip to content

Commit cb01e5b

Browse files
author
dbickson
committed
adding centos support
1 parent 4586d9d commit cb01e5b

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

INSTALL.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,32 @@ python3.8 -m pip install --upgrade pip
2020
brew install ffmpeg@4
2121
```
2222

23+
## CentOS 7 Setup
24+
```bash
25+
sudo yum -y install epel-release
26+
sudo yum -y update
27+
sudo yum -y groupinstall "Development Tools"
28+
sudo yum -y install openssl-devel bzip2-devel libffi-devel xz-devel
29+
sudo yum -y install wget
30+
sudo yum install redhat-lsb-core # for lsb_release
31+
sudo yum install -y ffmpeg ffmpeg-devel # for video support
32+
```
33+
2334
# Pip Package setup
2435

2536
## Using pypi
37+
This is the recommended installation method for all Mac, Ubuntu 18-20, Debian 10.
38+
Will not work for Centos 7.9, RedHat 4.8.
2639

2740
```bash
41+
python3.8 -m pip install -U pip
2842
python3.8 -m pip install fastdup
2943
```
3044

3145
Note: you may need to upgrade your pip, using the command `python3.8 -m pip install -U pip`.
3246

33-
## Using stable release
47+
## Using stable release.
48+
This is mandatory for CentOS 7.9 / RedHat 4.8 and similiar OS.
3449

3550
- download the latest wheel for your system from our [release page](https://github.com/visualdatabase/fastdup/releases). Assuming the wheel file is found in your working folder, run:
3651

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ python3.XX -m pip install -U pip
8585
python3.XX -m pip install fastdup
8686
```
8787
Where XX is your python version.
88+
For CentOS 7.X, RedHat 4.8 and other older Linux see our [Insallation instructions](./INSTALL.md).
89+
8890

8991
# Running the code
9092

0 commit comments

Comments
 (0)