Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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?

like image 536
sidx Avatar asked Aug 04 '15 13:08

sidx


1 Answers

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.

like image 145
Ergo Avatar answered Nov 01 '22 10:11

Ergo