While trying to run pipedit, I always get a Could not open language file >/pipedit.es<, aborting..
I don't have that language in the cfg. Tried with language=en, language=default, language= and also no language line at all. Every option leads to the same error message.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Sorry for the late reply, but that looks like the environment variable $PIPEDITCFG is pointing at a config file which defines the default language spanish (es), and you are editing a cfg file in a different location.
While trying to run pipedit, I always get a
Could not open language file >/pipedit.es<, aborting..
I don't have that language in the cfg. Tried with language=en, language=default, language= and also no language line at all. Every option leads to the same error message.
Sorry for the late reply, but that looks like the environment variable $PIPEDITCFG is pointing at a config file which defines the default language spanish (es), and you are editing a cfg file in a different location.
An example how $PIPEDITCFG could look like:
PIPEDITCFG=/home/yournamehere/.pipedit/pipedit.cfg
Under Linux you can check its setting with this command:
env | grep -i pipeditcfg
The variable should be defined in the config file of your shell, like .bashrc, .kshrc, depending on which shell you are using.
Edit the correct config file for your shell and define PIPEDITCFG like
PIPEDITCFG=$HOME/.pipedit/pipedit.cfg; export PIPEDITCFG
Close the terminal, open the terminal again and try to run pipedit again.