This message was deleted.
# python
s
This message was deleted.
k
Hey Ilian, sometimes pulumi stacks run in a virtual environment, check your pulumi.yaml file to see if it’s been defined in there. maybe you installed the package locally but the package isn’t in the virtual environment leading to this error
b
in the end I found an article recommending to add it to the requirements.txt file and run: - python -m venv venv - venv\Scripts\pip install -r requirements.txt
thanks!