This repository has been archived by the owner on Jul 12, 2024. It is now read-only.
[Foxy] Missing python packages pydot, psutil, PyQtGraph #442
Labels
enhancement
New feature or request
Foxy
PortToWindows
Request to port or support a ROS package on Windows.
Describe the bug
Running
rqt_graph
, andrqt
plugins requires manual installation of missing python packages such aspydot, psutil, PyQtGraph
and graphviz.Related to: #266, #267
To Reproduce
Plugins-Introspection-Node graph
) the following error appears:ModuleNotFoundError: No module named 'pydot'
solved by
pip install pydot
.FileNotFoundError: [WinError 2] "dot" not found in path.
solved by
choco install graphviz
and adding graphviz bin dir to PATH.Plugins - Introspection - Process monitor
throws following error:ModuleNotFoundError: No module named 'psutil'
solved by
pip install psutil
.Plugins - Visualization - Plot
throws following error:RuntimeError: No usable plot type found. Install at least one of: PyQtGraph, MatPlotLib (at least 1.4.0) or Python-Qwt5.
solved by
pip install pyqtgraph
.Expected behavior
I guess running rqt_graph and rqt plugins should not require manual installation of dependencies.
Maybe it can be added as part of patch.bat.
Environment information:
choco list --local-only
The text was updated successfully, but these errors were encountered: