aibasel / pyperplan

A lightweight STRIPS planner written in Python.
GNU General Public License v3.0
93 stars 41 forks source link

pip install issue #6

Closed tomsilver closed 4 years ago

tomsilver commented 4 years ago

Thanks very much for this extremely useful package!

I wanted to flag a minor issue with pip install pyperplan. Installing the package in this way seems to add the contents of src/ directly to the installation directory (e.g. site-packages). So for example, rather than having a pyperplan directory in my site package, I have a heuristics directory, a pddl directory, etc.

This causes conflicts if I am using pyperplan within a project that has files or directories with the names heuristics, pddl, etc.

jendrikseipp commented 4 years ago

Thanks for reporting this! We're looking into it.

jendrikseipp commented 4 years ago

I just pushed a fix. Could you please test this by doing python3 -m pip install git+https://github.com/aibasel/pyperplan.git?

tomsilver commented 4 years ago

@jendrikseipp thanks for the quick turnaround! I tested that command and it seems to have fixed the issue. Thanks again.

jendrikseipp commented 4 years ago

Nice, thanks for testing!