Aditya-Khadilkar / Face-tracking-with-Anime-characters

Hello! I have made a Python project where YURI from the game doki doki literature club accesses the webcam and stares directly into the players soul. Hope you enjoy!
Apache License 2.0
412 stars 61 forks source link

use Pipenv to track dependencies #1

Open bowbahdoe opened 6 years ago

bowbahdoe commented 6 years ago

First off, extremely creepy and fantastic project. You are a gift to the world.

Second, its generally bad practice in python to pip install packages globally on a per-project basis. Usually, most developers use a tool called virtualenv to be able to install packages locally for a single project. For any project, it is also a good idea to keep track of its dependencies as part of the project.

Anywho, I would recommend learning about Pipenv. By using that to handle dependencies, other developers can get up and started with your project quickly (not to mention yourself in quite a few situations)

Aditya-Khadilkar commented 6 years ago

Thanks a lot for your kind words :) I will look up and learn pipenv. I'm glad you liked it!