I am facing the following error: Virtualenv location: I tried setting the LANG in ~/.profile and ~/.bash_profile. Both didn’t work. Answer What worked for me on Mac OS X Sierra is adding the following into my ~/.bash_profile file: Then I reloaded the bash profile with: source ~/.bash_profile For those who use zsh shell, you must add those lines to your
Tag: pipenv
Git – Should Pipfile.lock be committed to version control?
When two developers are working on a project with different operating systems, the Pipfile.lock is different (especially the part inside host-environment-markers). For PHP, most people recommend to commit composer.lock file. Do we have to do the same for Python? Answer Short – Yes! The lock file tells pipenv exactly which version of each dependency needs to be installed. You will