QUECTEL SC20 PIP installation in YOCTO linux

This query is regarding about QUECTEL SC20 PIP installation in YOCTO linux
I am able to run the python but unable to run the pip
i have to install pip packages to run my python application
please can you suggest any procedure to install pip while compilation of yocto linux
so that we can proceed further in my project

Regards,
vijay
+919000125988

sudo rm /usr/bin/pip
ln -s /opt/python3.8/bin/pip3 /usr/bin/pip

Hi Vijay

If you’re running Python 2.7.9+ or Python 3.4+ you should already have pip installed.

My current Yocto Linux has two versions of Python

~ # python --version
Python 2.7.13
~ # python3 --version
Python 3.5.3
~ #

We develop using Python 3, to install pip you can run

~ # python3 -m ensurepip

And then, you can use pip as usual

~ # pip3 --version
pip 20.3.4 from /usr/lib/python3.5/site-packages/pip (python 3.5)
~ #

Regards
Jose