Open newarney opened 5 years ago
Hi!
Have you tried to run the distance calculation from the command line (i.e.,
not within Sublime Text)? What happens if you type myPDDL distance example.pddl
?
Hello,
I solved the problem. The point is, I'm using Sublime Text 3, but myPDDL path was pointing to Sublime Text 2. The path fix looks like this: path=~/.config/sublime-text-3/Packages/myPDDL
Thank you!
Thank you for the feedback! I'll update the README so that it points to Sublime 3.
is there not some way to have this line from myPDDL
file:
path=~/.config/sublime-text-2/Packages/myPDDL
...to just use the current path of the myPDDL file itself?
That would be a better default
Then you can just add
export PATH=$PATH:<path to Sublime Text>/Packages/myPDDL
to your .bashrc
as per the README and be done
here is a way for that:
# Set this path to the myPDDL folder
# Don't use a trailing slash (right: /myPDDL, wrong: /myPDDL/)
path="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
as found here https://stackoverflow.com/a/246128/202168
Hello!
I am trying to use myPDDL in Sublime, but when trying to calculate the distance, I find the following error:
I am using Ubuntu 18.04.3 LTS OS (64 bit).
Thank you!