On installing of Python programming dependent package with help of apt install - getting error even after setting venv


I am using Parrot 6 as my OS - Does it haveany restriction on using specific python package downloads.
While, i experiment few other python packages were allowed to download, please share your experience with parrot OS.
Kindly confirm how i can resolve this.

Does it haveany restriction on using specific python package downloads

இல்லை, ParrotOS ன் செக்யூரிட்டிக்கும் இங்கே உள்ள சிக்கலுக்கும் எந்த சம்பந்தமும் இல்லை.

Kindly confirm how i can resolve this

ctrl-alt-t அழுத்தி வரும் டெர்மினலில்

mkdir tamil
pushd tamil
git clone https://github.com/nithyadurai87/tamil-sandhi-checker.git
pushd tamil-sandhi-checker
python3 -m venv .venv
source .venv/bin/activate
pip3 install ezhil
echo do something
deactivate
while popd; do pwd; done

இந்த கமாண்டுகளை இயக்கவும். இங்கே echo do something என்ற இடத்தில் அந்த கமாண்ட் லைனிற்கு பதிலாக உங்களுக்கு என்ன செய்ய விருப்பமோ அதை செய்து கொள்ளவும்.