Hey all,
Not sure if I was doing something wrong, but when I tried to follow the video on Mac install of pipenv, I was noticing that the directions were working for me. https://www.codecademy.com/courses/learn-python-3/articles/learn-python-pipenv is the link, but anyway, with help of LLM, I was able to get it done rather quickly. My approach may not be the most efficient for accomplishing this specific task, as I recycled the commands from installing home-brew but it worked for me, and hopefully will help you.
Be sure to replace “your_user_name_here” with the name of the directory that is after users on your device. change it both times.
(echo; echo ‘export PATH=“$PATH:/Users/your_user_name_here/Library/Python/3.9/bin”’) >> /Users/your_user_name_here/.zprofile
Ensure change has occurred with:
source /Users/your_user_name_here/.zprofile
also, just for double check:
pipenv update
Hopefully this helps anyone else.
thanks,
Method