简体   繁体   中英

'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?

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM