Installation
We provide installation via PyPI or by cloning the project from GitHub.
Install via PyPI
-
Install
docaligner-docsaid:pip install docaligner-docsaid -
Verify the installation:
python -c "import docaligner; print(docaligner.__version__)" -
If you see the version number, the installation is successful.
Install via GitHub
tip
If you want to install via GitHub, make sure you have installed Capybara.
If not, refer to the Capybara Installation Guide.
-
Clone the project:
git clone https://github.com/DocsaidLab/DocAligner.git -
Navigate to the project directory:
cd DocAligner -
Install dependencies:
pip install setuptools wheel -
Create the package:
python setup.py bdist_wheel -
Install the package:
pip install dist/docaligner_docsaid-*-py3-none-any.whl
By following these steps, you should be able to successfully install DocAligner.
Once installed, You can test the installation by running the following command:
python -c "import docaligner; print(docaligner.__version__)"
# >>> 1.0.0
If you see a version number like 1.1.0, the installation was successful.