Here is steps of setting up environments for apsis.net ocr recognizer and other python environment setups for further thesis on recognizers
conda create -n name_of_env python=3.9
conda activate name_of_env
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
To know which repository you are currently in:
To check status of repository:
To clone a remote repository from github:
To add the changes you want to commit to the staging area:
Commit the changes to your local repository with a descriptive commit message:
To push to main: ### git push
To push to a specific branch:
Check the Branches in Your Local Repository:
If the remote URL is incorrect, you can update it using:
git remote set-url origin https://github.com/anabildebnath/Main-Portfolio-Website.git
To merge the changes from the remote main branch into your local main branch, you can use:
To rebase your local main branch onto the remote main branch, you can use:
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:
Deleting a Merged Branch: