Distribution "pyramid-debugtoolbar" not found and required

I am trying to debug a pyramid application via eclipse. I followed the instructions in this link .

When I try to run my application, I get the following error:

pkg_resources.DistributionNotFound: The 'pyramid-debugtoolbar' distribution was not found and is required by..

      

What am I doing wrong?

+3


source to share


1 answer


You most forgot to run:

python setup.py develop

      

For your application so that it doesn't pull all the required dependencies.



pip install -e .

      

willl also works.

+5


source







All Articles