首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >从Git安装Theano

从Git安装Theano
EN

Stack Overflow用户
提问于 2014-10-15 16:35:51
回答 2查看 963关注 0票数 2

当我想安装pylearn2 (和Theano)时,我在Linux集群中使用以下命令:

代码语言:javascript
复制
git clone git://github.com/lisa-lab/pylearn2.git
cd pylearn2
python setup.py develop --user 

但是,我看到Theano安装的错误如下:

代码语言:javascript
复制
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

我没有在网上找到关于这个问题的任何东西。如果有人能帮我,我会很感激的。

EN

回答 2

Stack Overflow用户

回答已采纳

发布于 2014-10-15 17:35:35

您可以手动安装Theano的开发版本。从这个链接:

http://deeplearning.net/software/theano/install.html#bleeding-edge-install-instructions

代码语言:javascript
复制
pip install --upgrade --no-deps git+git://github.com/Theano/Theano.git --user

代码语言:javascript
复制
pip install --upgrade --no-deps git+git://github.com/Theano/Theano.git

如果由于某些原因不能工作,克隆回购并手动安装它与pip install .在回购。

票数 1
EN

Stack Overflow用户

发布于 2015-08-27 03:03:15

Theano有以下要求,确保这些要求得到满足:

代码语言:javascript
复制
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

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/26387625

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档