I have been have a tough time to install virtualenvwrapper, I see that I have installed python 3, also installed virtualenvwrapper by running
pip3 install virtualenvwrapper
then adding there three lines on .bash_profile
export WORKON_HOME=$HOME/.virtualenvs
export PROJECT_HOME=$HOME/Devel
source /usr/local/bin/virtualenvwrapper.sh
but it gives me
-bash: /usr/local/bin/virtualenvwrapper.sh: No such file or directory
-bash: /usr/local/bin/virtualenvwrapper.sh: No such file or directory
-bash: /Users/user/.bash_profile: line 43: unexpected EOF while looking for matching `''
-bash: /Users/user/.bash_profile: line 46: syntax error: unexpected end of file
I though it may be not on the path /usr/local/bin/virtualenvwrapper.sh. Run find / -name virtualenvwrapper.sh, but no luck (just a lots of permission denide lines) How can I figure out?
virtualenv itself works, just need to setup vertalenvwrapper, thank you.