似乎无法在此包上执行简单的 pip 安装
Cannot seem to perform a simple pip install on this package
目前正在尝试按照说明进行操作 here,以便安装 Theano 的前沿版本。现在,当我调用 a 时,
pip install git+https://github.com/Theano/Theano.git#egg=Theano
我在我的终端上看到了这个:
zsh: no matches found: git+https://github.com/Theano/Theano.git#egg=Theano
我不确定我做错了什么,因为这正是页面上的说明。
zsh
,也就是我用的shell,目前赋予#
一个特殊的含义。因此最好将 运行 它放在引号内。我现在的命令是:
pip install git+https://github.com/Theano/Theano.git`#`egg=Theano
目前正在尝试按照说明进行操作 here,以便安装 Theano 的前沿版本。现在,当我调用 a 时,
pip install git+https://github.com/Theano/Theano.git#egg=Theano
我在我的终端上看到了这个:
zsh: no matches found: git+https://github.com/Theano/Theano.git#egg=Theano
我不确定我做错了什么,因为这正是页面上的说明。
zsh
,也就是我用的shell,目前赋予#
一个特殊的含义。因此最好将 运行 它放在引号内。我现在的命令是:
pip install git+https://github.com/Theano/Theano.git`#`egg=Theano