text_dedup
High-Performance Text Deduplication Toolkit
File Explorer
Download Latest Version (.zip)- dedup.cpp
- xxhash.h
- __init__.py
- abseil-cpp
- .gitmodules
- CMakeLists.txt
- dedup_toolkit.py
- LICENSE
- README.md
- requirements.txt
- setup.py
# Installation Guide
git clone https://github.com/conanhujinming/text_dedup
Downloads the entire project code from GitHub to your computer.
cd text_dedup
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- APT (Debian/Ubuntu κ³μ΄) Built into Debian/Ubuntu-based Linux distributions.
- Python 3 Python is required to use pip.
sudo apt-get install build-essential cmake libomp-dev
Installs directly from the APT package repository (Debian/Ubuntu-based).
pip install .
Installs the package published on PyPI directly β no need to clone the source.
Pulled directly from this repo's README.
3. CMake
Mediumsudo dnf install gcc-toolset-11 cmake
Type this command into your terminal and run it.
sudo apt-get install build-essential cmake libomp-dev
Installs directly from the APT package repository (Debian/Ubuntu-based).
cmake -B build .
Type this command into your terminal and run it.
Pulled directly from this repo's README.
4. Python
Easypip install -r requirements.txt
Installs the Python libraries listed in requirements.txt (or similar).
pip install .
Installs the package published on PyPI directly β no need to clone the source.
Pulled directly from this repo's README.
