Run pip safely in deployment
When testing python 3.10, I found that following the deployment installation process exactly led to using pip from python3.9, i.e. pip install ...
checked the python3.9 libraries and concluded it had everything it needed. Switching to python -m pip
instead of just pip
fixes this issue.
Edited by Cody Messick