You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by "acassis (via GitHub)" <gi...@apache.org> on 2023/12/12 23:25:28 UTC

[I] cxxfilt was included in official NuttX documentation install but is not present on Ubuntu [nuttx]

acassis opened a new issue, #11376:
URL: https://github.com/apache/nuttx/issues/11376

   I receive a comment from a user trying to install NuttX dependencies and cannot figure out how to install cxxfilt because pip message recommends to run apt install python3-cxxfilt but this packet doesn't exist on Ubuntu.
   
   More info:
   https://www.embeddedrelated.com/showarticle/1524.php#comments
   
   @xiaoxiang781216 any idea how to solve this issue?


-- 
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-unsubscribe@nuttx.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] cxxfilt was included in official NuttX documentation install but is not present on Ubuntu [nuttx]

Posted by "xiaoxiang781216 (via GitHub)" <gi...@apache.org>.
xiaoxiang781216 commented on issue #11376:
URL: https://github.com/apache/nuttx/issues/11376#issuecomment-1853131100

   I am using Ubuntu 22.04, the installation run without problem. @Gary-Hobson do you encounter the similar problem?


-- 
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-unsubscribe@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] cxxfilt was included in official NuttX documentation install but is not present on Ubuntu [nuttx]

Posted by "Gary-Hobson (via GitHub)" <gi...@apache.org>.
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-unsubscribe@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] cxxfilt was included in official NuttX documentation install but is not present on Ubuntu [nuttx]

Posted by "acassis (via GitHub)" <gi...@apache.org>.
acassis closed issue #11376: cxxfilt was included in official NuttX documentation install but is not present on Ubuntu
URL: https://github.com/apache/nuttx/issues/11376


-- 
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-unsubscribe@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] cxxfilt was included in official NuttX documentation install but is not present on Ubuntu [nuttx]

Posted by "acassis (via GitHub)" <gi...@apache.org>.
acassis commented on issue #11376:
URL: https://github.com/apache/nuttx/issues/11376#issuecomment-1854005439

   Thank you @Gary-Hobson and @xiaoxiang781216 


-- 
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-unsubscribe@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org