-
Checklist
Version1.19.03 Have you submitted your log files from the About page? Note that outbound email must be working for logs to be submitted.I have not submitted logs What is/are your question(s)?What is the cargo library used for? I am testing getting another application running on my Pi with GenMon on a Pi 5, but one of the dependencies installed by Cargo (llvm-14-tools) is causing it to fail, so I'm curious what I might break if I remove the library. It all works fine on Pi 3, 4, and Zero 2. Additional informationNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
genmon does not explicitly install cargo. I thought it may be installed as a dependency of one of the libaries so I tried the 'pip3 freeze' command on a pi 4 and pi5 and I do not see this library installed on my test pis. Are you installing any other software on the pi5? |
Beta Was this translation helpful? Give feedback.
ok. I forgot about this. I was only checking the phthon libaries used by genmon directly, which are installed via pip.
the line in the instal script that uses apt-get which installs cargo is there to support the install of some libraries that need to be built on the fly instead of downloading pre-built executables for the target processor. If memory serves this was added when there were some incompatibilities with the cryptography python module when using HTTPS with the web interface.
It is possible that this is not needed at this point as incompatibilities that come up between libraries are often ironed out over time by the library maintainers. The short answer is Genmon does not need ca…