Installation #72
-
Hi, CsatiZoltan When I install the software, some errors occur, showing in the picture. Does it mean the installation has failed? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 10 replies
-
Hi, Only the installation of that specific Python package failed. The reason is that git is not installed on your system (as I see, you are working under Windows), therefore the command couldn't be executed. The PandasDataFrameGUI package is needed only for a small but useful functionality (to display grain statistics in a table). If you do not need that feature, you can leave it as it is. Otherwise, install git on your system. You can either install git only (e.g. through Anaconda: Next time, please send the full error message as text and not as a screenshot so that it is easier for me to debug. Hope it helps, P.S.: |
Beta Was this translation helpful? Give feedback.
Hi,
Only the installation of that specific Python package failed. The reason is that git is not installed on your system (as I see, you are working under Windows), therefore the command couldn't be executed. The PandasDataFrameGUI package is needed only for a small but useful functionality (to display grain statistics in a table). If you do not need that feature, you can leave it as it is. Otherwise, install git on your system. You can either install git only (e.g. through Anaconda:
conda install -c conda-forge git
), or by installing a GUI (which will install git itself).Next time, please send the full error message as text and not as a screenshot so that it is easier for me to debug.
Ho…