当我想安装pylearn2 (和Theano)时,我在Linux集群中使用以下命令:
git clone git://github.com/lisa-lab/pylearn2.git
cd pylearn2
python setup.py develop --user 但是,我看到Theano安装的错误如下:
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我没有在网上找到关于这个问题的任何东西。如果有人能帮我,我会很感激的。
发布于 2014-10-15 17:35:35
您可以手动安装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 .在回购。
发布于 2015-08-27 03:03:15
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安装Theano
https://stackoverflow.com/questions/26387625
复制相似问题