Issue in Torizon Extension to install the pip

I have install the Extension of “Torizon ide extension-apollox” in visual studio I have connected to the board(verdin-imx8M plus) i am trying to run the python Template i am getting the following error
Executing task: pwsh .conf/validateDepsRunning.ps1

⚠️ VALIDATING ENVIRONMENT    
✅ Environment is valid!    
 *  Terminal will be reused by tasks, press any key to close it.     
 *  Executing task: bash -c [[ ! -z "10.10.1.239" ]] && true || false    
 *  Terminal will be reused by tasks, press any key to close it.     
 *  Executing task: bash -c [[ "aarch64" == "aarch64" ]] && true || false     
 *  Terminal will be reused by tasks, press any key to close it.     
 *  Executing task: /bin/python3 -m pip install --break-system-packages -r requirements-debug.txt 
Usage:   
  /bin/python3 -m pip install [options] <requirement specifier> [package-index-options] ...
  /bin/python3 -m pip install [options] -r <requirements file> [package-index-options] ...
  /bin/python3 -m pip install [options] [-e] <vcs project url> ...
  /bin/python3 -m pip install [options] [-e] <local project path> ...
  /bin/python3 -m pip install [options] <archive url/path> ...

no such option: --break-system-packages

 *  The terminal process "/bin/python3 '-m', 'pip', 'install', '--break-system-packages', '-r', 'requirements-debug.txt'" terminated with exit code: 2. 
 *  Terminal will be reused by tasks, press any key to close it. 

please help me to resolve the issue

Hey @saikumar

could you please update the pip on your development environment?
Open a new terminal and execute the follow command:

pip3 install --upgrade pip

Let me know if this works for you.

BR,

i have tried that one i am getting error like sh: pip3: command not found

Hey @saikumar

this is weird. Are you using WSL or bare Linux? You ran the check dependencies task when opened the project?

Let me know.
BR,

Hi @saikumar,

You can try reinstalling python and pip and this should able to fix issue.

sudo apt-get remove python3-pip
sudo apt-get install python3-pip
pip3 install --upgrade pip

Best Regards
Ritesh Kumar