The Pipefile has all the python dependencies and requirements you should need. So you can use Pipenv is you want to create a seperate python enviornment for this project.
To install pipenv see here.
To create the env and install the required libraries (once you have pipenv installed) you can just do:
pipenv install
Then to activate the env and launch jupyter from this env you can do something like the below two commands:
pipenv shell
jupyter lab