'pyramid-debugtoolbar' distribution was not found and is required

6.3k views Asked by At

I'm trying to debug my pyramid application via eclipse. I've followed the instructions in this link.

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

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

I've un-commented the line in development.ini pyramid.includes = pyramid_debugtoolbar

What am I doing wrong?

1

There are 1 answers

0
Ergo On

You most forgot to run:

python setup.py develop

For your application so it didn't pull all the required dependancies.

pip install -e .

willl also work.