I was trying to install xmgrace into my linux system(debian 10) in a conda environment. I created an environment using the following command:
conda create -n xmgrace_env
I then activate this environment:
conda activate xmgrace_env
I then installed xmgrace using the following command:
conda install -c "uvcdat/label/nightly" xmgrace
I then list the package I installed using the following command:
conda list
I found xmgrace had been installed:
...
xmgrace 8.0.2018.04.04.12.14.g3c3750c py27_0 uvcdat/label/nightly
...
Howerver, when I checked the excutables in the bin folder of the xmgrace_env folder, I couldn't find the xmgrace excutable.
Also the following command couldn't tell the location of xmgrace
which xmgrace
So does anyone know what is going on and how to solve this problem?