Dealing with the natural language processing of the new development goals
- We're using
requirements.txtto keep track of dependency packages - When setting up project on your local machine run the command to install the dependecy packages. It is recommended to use
venvorpipenvon your local setup while working. (Do not commit the virtual environment files)pip install -r requirements.txtpipenv install -r requirements.txt
- If you're integrating a new package, remember to export your package dependencies using the. following command.
pip freeze > requirements.txt