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