Python-ChatBot
Python-ChatBot copied to clipboard
include requirements.txt
requirements.txt will someone to install all the lib you used thanks for sharing
pipenv works in the same way as requirements.txt. So It's not necessary to use requirements.txt when We have pipenv.
You just have to use below commands.
1. Install Pipenv
pip install pipenv
2. Activate Virtualenv and Install dependencies
pipenv install
pipenv shell
You are good to go.
reference: https://realpython.com/pipenv-guide/