Open ndenicoo opened 11 months ago
Hi @ndenicoo! Are you sure you installed unified_planning[pyperplan]
in the same python environment where you are running the notebook?
Im having the same issue. However when trying to install unified-planning with the pyperplan extra i'm getting the following error.
unified_planning[pyperplan]
zsh: no matches found: unified_planning[pyperplan]
Im able to install unified_planning without issue, however its just including the pyperlan extra solver that seems to be an issue.
So the issue was zsh shell is interpreting the square brackets as a pattern matching operator when using the command below (from the aiplan4eu docs):
pip install unified-planning[pyperplan]
To fix this, i had to quote the whole package name like this:
pip install 'unified-planning[pyperplan]'
User Story
Im trying the library in Jupyter Notebook. I tried to solve the following simple problem.
However, I get the following error
Previously I installed
pip install unified_planning[pyperplan]
and the following text appeared:
Requirement already satisfied: unified_planning[pyperplan] in c:\users\nicor\anaconda3\lib\site-packages (1.0.0) Requirement already satisfied: pyparsing in c:\users\nicor\anaconda3\lib\site-packages (from unified_planning[pyperplan]) (3.0.9) Requirement already satisfied: networkx in c:\users\nicor\anaconda3\lib\site-packages (from unified_planning[pyperplan]) (3.1) Requirement already satisfied: up-pyperplan==1.0.0 in c:\users\nicor\anaconda3\lib\site-packages (from unified_planning[pyperplan]) (1.0.0) Requirement already satisfied: pyperplan==2.1 in c:\users\nicor\anaconda3\lib\site-packages (from up-pyperplan==1.0.0->unified_planning[pyperplan]) (2.1) Requirement already satisfied: wheel in c:\users\nicor\anaconda3\lib\site-packages (from pyperplan==2.1->up-pyperplan==1.0.0->unified_planning[pyperplan]) (0.38.4)