Why is it so hard to do Python on a mac... well its not so bad.
python3 -m venv myenv
source ./myenv/bin/activate
pip install PipfileWhere myenv is the env directory from the given project and Pipfile is the name of the pipfile
here is how you export the env file.
pip freeze > requirements.txt