I have been experiencing this issue here when I am trying to set pipenv on EC2.t2 free tier for production with Django.
On the solution listed on that same post it says:
it is important to note that pipenv will likely not be able to be installed at the global level due to the pip conflict. You can install pipenv at the user level:
pip install --user pipenv
My question is, since this is production mode, wouldn't this be bringing me problems later on since I am installing my packages with some random user's privileges?
Anyone has any video of using pipenv in production?