Skip to content

Here is steps of setting up environments for apsis.net ocr recognizer and other python environment setups for further thesis on recognizers

Notifications You must be signed in to change notification settings

anabildebnath/bbocr-env-setup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 

Repository files navigation

bbocr-env-setup

Here is steps of setting up environments for apsis.net ocr recognizer and other python environment setups for further thesis on recognizers

specific conda env setup

conda create -n name_of_env python=3.9
conda activate name_of_env

APSIS.NET ocr dependencies installation

pip install apsisocr
pip install onnxruntime pip install fastdeploy-python -f https://www.paddlepaddle.org.cn/whl/fastdeploy.html
pip install torch torchvision --index-url https://download.pytorch.org/whl/cpu
pip install ultralytics
pip install shapely

basic git commands

To know which repository you are currently in:

git remote -v

To check status of repository:

git status

To clone a remote repository from github:

To add the changes you want to commit to the staging area:

git add .

Commit the changes to your local repository with a descriptive commit message:

git commit -m "Your descriptive commit message here"

To push to main: ### git push
To push to a specific branch:

git push origin branch_name

Check the Branches in Your Local Repository:

git branch

If the remote URL is incorrect, you can update it using:

To merge the changes from the remote main branch into your local main branch, you can use:

git pull origin main --no-rebase

To rebase your local main branch onto the remote main branch, you can use:

git pull origin main --rebase

If you only want to allow fast-forward merges, meaning that Git will only perform the merge if it can be done without creating a merge commit, you can use:

git pull origin main --ff-only

Deleting a Merged Branch:

git branch -d branch_name or ### git branch -D branch_name

About

Here is steps of setting up environments for apsis.net ocr recognizer and other python environment setups for further thesis on recognizers

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published