当我想安装pylearn2(和Theano)时,我在Linux集群中使用以下命令:
git clone git://github.com/lisa-lab/pylearn2.git
cd pylearn2
python setup.py develop --user
但是,我看到Theano instllation的以下错误:
Searching for Theano
Best match: Theano [unknown version]
Downloading git+http://github.com/Theano/Theano.git#egg=Theano
error: Download error for git+http://github.com/Theano/Theano.git: unknown url type: git+http
我没有在网上找到关于这个问题的任何内容。如果有人能帮助我,我将不胜感激。
答案 0 :(得分:1)
您可以手动安装Theano的开发版本。从这个链接:
http://deeplearning.net/software/theano/install.html#bleeding-edge-install-instructions
pip install --upgrade --no-deps git+git://github.com/Theano/Theano.git --user
或
pip install --upgrade --no-deps git+git://github.com/Theano/Theano.git
如果出于某种原因无法正常工作,请克隆回购并在回购邮件中使用pip install .
手动安装。
答案 1 :(得分:0)
Theano有以下要求,确保满足:
1) Python >= 2.6
2) g++, python-dev
3) NumPy >= 1.6.2
4) SciPy >= 0.11
5) A BLAS installation (with Level 3 functionality)
然后让我们不要复杂化,只需尝试
pip install Theano