Python-ChatBot icon indicating copy to clipboard operation
Python-ChatBot copied to clipboard

include requirements.txt

Open Arinze1020 opened this issue 5 years ago • 1 comments

requirements.txt will someone to install all the lib you used thanks for sharing

Arinze1020 avatar Jul 18 '20 21:07 Arinze1020

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/

codeperfectplus avatar Jul 19 '20 03:07 codeperfectplus