~/.bash_profile 在 OSX 版本 10.11.6 for virtualenv 和 Python
~/.bash_profile in OSX version 10.11.6 for virtualenv and Python
所以当我在终端中编写这些命令时,我得到了这些错误:
/ L/F/P Versions export VIRTUALENVWRAPPER_PYTHON=/usr/local/bin/python3 ➶ 127 04:21:45 PM
/ L/F/P Versions source /usr/local/bin/virtualenvwrapper.sh 04:21:52 PM
Expected end of the statement, but instead found a '&'
/usr/local/bin/virtualenvwrapper.sh (line 67): if [ "$OS" = "Windows_NT" ] && ([ "$MSYSTEM" = "MINGW32" ] || [ "$MSYSTEM" = "MINGW64" ])
^
from sourcing file /usr/local/bin/virtualenvwrapper.sh
called on standard input
source: Error while reading file '/usr/local/bin/virtualenvwrapper.sh'
另外,当我将它们写在 ~/.bash_profile
中时,我得到了这些错误:
/ L/F/P Versions vi ~/.bash_profile 04:18:50 PM
/ L/F/P Versions source ~/.bash_profile 04:21:11 PM
Unsupported use of '&&'. In fish, please use 'COMMAND; and COMMAND'.
~/.bash_profile (line 3): [[ -s "$HOME/.profile" ]] && source "$HOME/.profile" # Load the default .profile
^
from sourcing file ~/.bash_profile
called on standard input
source: Error while reading file '/Users/mona/.bash_profile'
我的 ~/.bash_profile
里有这些:
~/.bash_profile
1 export PATH=$PATH:/usr/local/go/bin
2
3 [[ -s "$HOME/.profile" ]] && source "$HOME/.profile" # Load the default .profile
4
5 [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
6
7 # Setting PATH for Python 3.4
8 # The orginal version is saved in .bash_profile.pysave
9 PATH="/Library/Frameworks/Python.framework/Versions/3.4/bin:${PATH}"
10 export PATH
11
12 # added by Anaconda2 2.4.1 installer
13 export PATH="/Users/mona/anaconda/bin:$PATH"
14
15 compresspdf() {
16 gs -sDEVICE=pdfwrite -dNOPAUSE -dQUIET -dBATCH -dPDFSETTINGS=/${3:-"screen"} -dCompatibilityLevel=1.4 -sOutputFile=
17 }
18
19
20 export PATH="/usr/local/sbin:$PATH"
21 export PATH=/usr/local/bin:$PATH
22 export VIRTUALENVWRAPPER_PYTHON=/usr/local/bin/python3
23 source /usr/local/bin/virtualenvwrapper.sh
~
我正在尝试学习本教程:
http://www.pyimagesearch.com/2015/06/29/install-opencv-3-0-and-python-3-4-on-osx/
感谢您的帮助或评论。
/ L/F/P Versions python 04:28:32 PM
Python 3.5.2 (default, Jul 28 2016, 21:28:07)
[GCC 4.2.1 Compatible Apple LLVM 7.0.2 (clang-700.1.81)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
您似乎在使用 fish
shell。您的 bash 配置文件是使用 fish 显然不支持的项目编写的,具体请参阅
Unsupported use of '&&'. In fish, please use 'COMMAND; and COMMAND'.
从您尝试获取您的 bash 个人资料开始。您可能需要找到不同的教程来学习,自己创建 virtualenvs,或者尝试将教程的 bash 部分翻译成 fish。
所以当我在终端中编写这些命令时,我得到了这些错误:
/ L/F/P Versions export VIRTUALENVWRAPPER_PYTHON=/usr/local/bin/python3 ➶ 127 04:21:45 PM
/ L/F/P Versions source /usr/local/bin/virtualenvwrapper.sh 04:21:52 PM
Expected end of the statement, but instead found a '&'
/usr/local/bin/virtualenvwrapper.sh (line 67): if [ "$OS" = "Windows_NT" ] && ([ "$MSYSTEM" = "MINGW32" ] || [ "$MSYSTEM" = "MINGW64" ])
^
from sourcing file /usr/local/bin/virtualenvwrapper.sh
called on standard input
source: Error while reading file '/usr/local/bin/virtualenvwrapper.sh'
另外,当我将它们写在 ~/.bash_profile
中时,我得到了这些错误:
/ L/F/P Versions vi ~/.bash_profile 04:18:50 PM
/ L/F/P Versions source ~/.bash_profile 04:21:11 PM
Unsupported use of '&&'. In fish, please use 'COMMAND; and COMMAND'.
~/.bash_profile (line 3): [[ -s "$HOME/.profile" ]] && source "$HOME/.profile" # Load the default .profile
^
from sourcing file ~/.bash_profile
called on standard input
source: Error while reading file '/Users/mona/.bash_profile'
我的 ~/.bash_profile
里有这些:
~/.bash_profile
1 export PATH=$PATH:/usr/local/go/bin
2
3 [[ -s "$HOME/.profile" ]] && source "$HOME/.profile" # Load the default .profile
4
5 [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
6
7 # Setting PATH for Python 3.4
8 # The orginal version is saved in .bash_profile.pysave
9 PATH="/Library/Frameworks/Python.framework/Versions/3.4/bin:${PATH}"
10 export PATH
11
12 # added by Anaconda2 2.4.1 installer
13 export PATH="/Users/mona/anaconda/bin:$PATH"
14
15 compresspdf() {
16 gs -sDEVICE=pdfwrite -dNOPAUSE -dQUIET -dBATCH -dPDFSETTINGS=/${3:-"screen"} -dCompatibilityLevel=1.4 -sOutputFile=
17 }
18
19
20 export PATH="/usr/local/sbin:$PATH"
21 export PATH=/usr/local/bin:$PATH
22 export VIRTUALENVWRAPPER_PYTHON=/usr/local/bin/python3
23 source /usr/local/bin/virtualenvwrapper.sh
~
我正在尝试学习本教程:
http://www.pyimagesearch.com/2015/06/29/install-opencv-3-0-and-python-3-4-on-osx/
感谢您的帮助或评论。
/ L/F/P Versions python 04:28:32 PM
Python 3.5.2 (default, Jul 28 2016, 21:28:07)
[GCC 4.2.1 Compatible Apple LLVM 7.0.2 (clang-700.1.81)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
您似乎在使用 fish
shell。您的 bash 配置文件是使用 fish 显然不支持的项目编写的,具体请参阅
Unsupported use of '&&'. In fish, please use 'COMMAND; and COMMAND'.
从您尝试获取您的 bash 个人资料开始。您可能需要找到不同的教程来学习,自己创建 virtualenvs,或者尝试将教程的 bash 部分翻译成 fish。