无法通过bash脚本激活virtualenv

时间:2015-09-07 18:36:36

标签: django python-3.x virtualenv

在此之前,如果有人可以帮助改变其他机器(窗户)上的必要路径,以便也可以在那里使用,我会非常感激。

virtualenv是git。

我正在python中的virtualenv中运行一个项目。这是virtualenv的路径。

~/iss/issp/bin

问题是当我尝试使用以下命令运行激活脚本时

source activate

它会抛出以下错误。

:~/iss/issp/bin$ source activate
: command not found
bash: activate: line 4: syntax error near unexpected token `$'{\r''
'ash: activate: line 4: `deactivate () {

以下是脚本中的代码:

# This file must be used with "source bin/activate" *from bash*
# you cannot run it directly

deactivate () {
    unset pydoc

    # reset old environment variables
    if [ -n "$_OLD_VIRTUAL_PATH" ] ; then
        PATH="$_OLD_VIRTUAL_PATH"
        export PATH
        unset _OLD_VIRTUAL_PATH
    fi
    if [ -n "$_OLD_VIRTUAL_PYTHONHOME" ] ; then
        PYTHONHOME="$_OLD_VIRTUAL_PYTHONHOME"
        export PYTHONHOME
        unset _OLD_VIRTUAL_PYTHONHOME
    fi

    # This should detect bash and zsh, which have a hash command that must
    # be called to get it to forget past commands.  Without forgetting
    # past commands the $PATH changes we made may not be respected
    if [ -n "$BASH" -o -n "$ZSH_VERSION" ] ; then
        hash -r 2>/dev/null
    fi

    if [ -n "$_OLD_VIRTUAL_PS1" ] ; then
        PS1="$_OLD_VIRTUAL_PS1"
        export PS1
        unset _OLD_VIRTUAL_PS1
    fi

    unset VIRTUAL_ENV
    if [ ! "$1" = "nondestructive" ] ; then
    # Self destruct!
        unset -f deactivate
    fi
}

# unset irrelevant variables
deactivate nondestructive

VIRTUAL_ENV="/home/pablo/issp"
export VIRTUAL_ENV

_OLD_VIRTUAL_PATH="$PATH"
PATH="$VIRTUAL_ENV/bin:$PATH"
export PATH

# unset PYTHONHOME if set
# this will fail if PYTHONHOME is set to the empty string (which is bad anyway)
# could use `if (set -u; : $PYTHONHOME) ;` in bash
if [ -n "$PYTHONHOME" ] ; then
    _OLD_VIRTUAL_PYTHONHOME="$PYTHONHOME"
    unset PYTHONHOME
fi

if [ -z "$VIRTUAL_ENV_DISABLE_PROMPT" ] ; then
    _OLD_VIRTUAL_PS1="$PS1"
    if [ "x" != x ] ; then
        PS1="$PS1"
    else
    if [ "`basename \"$VIRTUAL_ENV\"`" = "__" ] ; then
        # special case for Aspen magic directories
        # see http://www.zetadev.com/software/aspen/
        PS1="[`basename \`dirname \"$VIRTUAL_ENV\"\``] $PS1"
    else
        PS1="(`basename \"$VIRTUAL_ENV\"`)$PS1"
    fi
    fi
    export PS1
fi

alias pydoc="python -m pydoc"

# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands.  Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n "$BASH" -o -n "$ZSH_VERSION" ] ; then
    hash -r 2>/dev/null
fi

非常感谢任何帮助。非常感谢。

4 个答案:

答案 0 :(得分:4)

问题是activate脚本具有Windows行尾。我们可以通过在命令行上运行以下命令来确认这一点。

$ file activate

返回

activate: ASCII text, with CRLF line terminators

CRLF行终止符表示Windows行结尾。

因此,我们需要将它们转换为Unix行结尾,以便可以source文件。

我们有一些选择

  1. dos2unix activate-(将在适当位置编辑文件)
  2. sed -i 's/\r$//' activate(还可以在适当位置编辑文件)
  3. mv activate activate_with_windows_line_endings && (tr -d '\r' < activate_with_windows_line_endings ) > activate在这里,我们只是删除所有出现的\r,并保留了原始文件。
  4. 在您喜欢的文本编辑器中打开文件。大多数人都会有一种方法来显示文件的当前行尾(下图的右下角),并将它们转换为Unix行尾(在Notepad ++中,我们转到Edit → EOL Conversion → Unix (LF),然后保存。这是一个在Notepad ++中如何做的屏幕截图 enter image description here

最后

现在source activate应该可以工作了。

答案 1 :(得分:2)

刚遇到同样的问题,并决定hexdump -C bin/activate来解决问题。原来我的bin / activate文件有CR / LF行结尾而不是CR,用(tr -d '\r' < bin/activate) > bin/activate修改它们解决了我的问题。

答案 2 :(得分:0)

也许你的.bashrc文件中有别名,这就是为什么去激活就像命令一样,而不是像函数一样

代替

deactivate() {

使用此

function deactivate() {

答案 3 :(得分:0)

我在使用 VS Code 和 python 标准库中的 venv 包时遇到了这个问题,因为我使用 bash 作为我的默认终端。

Bash 脚本应该总是使用 LF 而不是 CRLF 行尾。这是 python virtualenv 包的 now fixed,但它仍然是 venv 的问题。

如此处所述,https://bugs.python.org/issue43437venv 在创建新的虚拟环境时以二进制模式复制其 activate 脚本模板。因此,我们只需要使用上面的任何 Mark's methods 将原始文件转换为 Unix 行尾。

激活脚本模板位于此处:<python3_root>/Lib/venv/scripts/common/activate

要修复它:sed -i 's/\r$//' activate

只要该文件保留其 LF 行结尾,使用 venv 创建的新虚拟环境应该具有可行的激活脚本。