Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Using Databases in Python Meet Peewee Modeling

Dmitriy Ignatiev
PLUS
Dmitriy Ignatiev
Courses Plus Student 6,236 Points

execute peewee in Pycharm

Hi there,

I have no idea how to execute peewee in Pycharm like Kennet did in Workspace

Could you please help me.

I read all the question related this video but still doesn't understand.

1 Answer

Ronald Lira
Ronald Lira
12,217 Points

Hey,

  1. You need to install peewee using pip. I would recommend using virtual environments instead of installing it for the whole system. Look at this for setting it up: https://teamtreehouse.com/library/setting-up-a-local-python-environment-windows or https://teamtreehouse.com/library/setting-up-a-local-python-environment-mac

  2. Then in Pycharm you have to configure the appropriate interpreter for your project. Use CMD+, to open the config panel. The go to Project > Project interpreter. Then search for the virtualenv you set up in the previous step. Hope it helps

Regards,

Ronald