bash: __git_ps1: command not found error in virtual environment

0

I created a virtual environment using pipenv. I activated it and opened it by using pipenv shell at the project directory. All my commands work properly. However, at the end it get the following error bash: __git_ps1: command not found.

What does this mean? How do I fix this?

The command line works perfectly and does not show this error when I use it outside the virtual environment.

I am using a MAC by the way.

Command

Posted 2019-08-06T20:10:49.940

Reputation: 1

It's the git completion and prompt modification script. See https://stackoverflow.com/questions/12870928/mac-bash-git-ps1-command-not-found

– hoefling – 2019-08-08T15:47:25.070

No answers