Gary-Hobson commented on issue #11376: URL: https://github.com/apache/nuttx/issues/11376#issuecomment-1853176664
I am using ubuntu 22.04, but I reproduced this problem in docker I found the reason and solution on stackoverflow: https://stackoverflow.com/questions/75602063/pip-install-r-requirements-txt-is-failing-this-environment-is-externally-mana The recommended solution is: ``` python3 -m venv .venv source .venv/bin/activate pip install cxxfilt ``` A simpler way is: ``` pip install --break-system-packages --user cxxfilt ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org