- 浏览: 226852 次
- 性别:
- 来自: 上海
最新评论
-
Mybeautiful:
碰到同样问题,谢谢分享。
Android shape中的padding无效 -
finger:
还有 Open3.capture 系列 和 Open3.pop ...
读《The Ruby Way》之运行外部程序 -
qianguming:
在eclipse中怎么配置的啊
Cannot run program jad -
luckyfenfen:
解决了我的问题,谢谢啦~
MySQL Plugin 'InnoDB' init function returned error. -
shasha_god:
请问一下,yum install zlib-devel
yu ...
在CentOS上安装git
执行ruby script/console,可是报错
原来是没有安装readline,就设置了一下代理
在执行yum install ncurses-devel的时候又报错,(ncurses-devel里包含readline),:shock:
在网上查了好久,也没有找到原因。突然想起是不是代理设定的不够规范呀。重新设定了代理。
OK,ncurses-devel顺利安装成功。
然后,跑到ruby安装目录的ext/readline下,执行下边的命令。
怎么又
居然又少readline.h。啊啊。装readline-devel吧。
再执行
终于可以执行ruby script/console了。
ruby script/console Loading development environment. /usr/local/ruby/lib/ruby/1.8/irb/completion.rb:10:in `require': no such file to load -- readline (LoadError) from /usr/local/ruby/lib/ruby/1.8/irb/completion.rb:10 from /usr/local/ruby/lib/ruby/1.8/irb/init.rb:252:in `require' from /usr/local/ruby/lib/ruby/1.8/irb/init.rb:252:in `load_modules' from /usr/local/ruby/lib/ruby/1.8/irb/init.rb:250:in `each' from /usr/local/ruby/lib/ruby/1.8/irb/init.rb:250:in `load_modules' from /usr/local/ruby/lib/ruby/1.8/irb/init.rb:21:in `setup' from /usr/local/ruby/lib/ruby/1.8/irb.rb:54:in `start' from /usr/local/ruby/bin/irb:13
原来是没有安装readline,就设置了一下代理
export http_proxy=17x.xx.xx.xxx:8080
在执行yum install ncurses-devel的时候又报错,(ncurses-devel里包含readline),:shock:
yum install ncurses-devel Loading "fastestmirror" plugin Determining fastest mirrors Traceback (most recent call last): File "/usr/bin/yum", line 29, in ? yummain.main(sys.argv[1:]) File "/usr/share/yum-cli/yummain.py", line 105, in main result, resultmsgs = base.doCommands() File "/usr/share/yum-cli/cli.py", line 289, in doCommands self._getTs() File "/usr/lib/python2.4/site-packages/yum/depsolve.py", line 85, in _getTs self._getTsInfo() File "/usr/lib/python2.4/site-packages/yum/depsolve.py", line 91, in _getTsInfo self._tsInfo.setDatabases(self.rpmdb, self.pkgSack) File "/usr/lib/python2.4/site-packages/yum/__init__.py", line 537, in <lambda> pkgSack = property(fget=lambda self: self._getSacks(), File "/usr/lib/python2.4/site-packages/yum/__init__.py", line 392, in _getSacks self.repos.populateSack(which=repos) File "/usr/lib/python2.4/site-packages/yum/repos.py", line 214, in populateSack self.doSetup() File "/usr/lib/python2.4/site-packages/yum/repos.py", line 66, in doSetup self.ayum.plugins.run('postreposetup') File "/usr/lib/python2.4/site-packages/yum/plugins.py", line 169, in run func(conduitcls(self, self.base, conf, **kwargs)) File "/usr/lib/yum-plugins/fastestmirror.py", line 90, in postreposetup_hook repomirrors[str(repo)] = FastestMirror(repo.urls).get_mirrorlist() File "/usr/lib/python2.4/site-packages/yum/yumRepo.py", line 528, in <lambda> urls = property(fget=lambda self: self._geturls(), File "/usr/lib/python2.4/site-packages/yum/yumRepo.py", line 525, in _geturls self._baseurlSetup() File "/usr/lib/python2.4/site-packages/yum/yumRepo.py", line 490, in _baseurlSetup mirrorurls.extend(self._getMirrorList()) File "/usr/lib/python2.4/site-packages/yum/yumRepo.py", line 940, in _getMirrorList fo = urlgrabber.grabber.urlopen(url, proxies=self.proxy_dict) File "/usr/lib/python2.4/site-packages/urlgrabber/grabber.py", line 605, in urlopen return default_grabber.urlopen(url, **kwargs) File "/usr/lib/python2.4/site-packages/urlgrabber/grabber.py", line 884, in urlopen return self._retry(opts, retryfunc, url) File "/usr/lib/python2.4/site-packages/urlgrabber/grabber.py", line 845, in _retry r = apply(func, (opts,) + args, {}) File "/usr/lib/python2.4/site-packages/urlgrabber/grabber.py", line 883, in retryfunc return URLGrabberFileObject(url, filename=None, opts=opts) File "/usr/lib/python2.4/site-packages/urlgrabber/grabber.py", line 1001, in __init__ self._do_open() File "/usr/lib/python2.4/site-packages/urlgrabber/grabber.py", line 1072, in _do_open fo, hdr = self._make_request(req, opener) File "/usr/lib/python2.4/site-packages/urlgrabber/grabber.py", line 1172, in _make_request fo = opener.open(req) File "/usr/lib/python2.4/urllib2.py", line 358, in open response = self._open(req, data) File "/usr/lib/python2.4/urllib2.py", line 376, in _open '_open', req) File "/usr/lib/python2.4/urllib2.py", line 337, in _call_chain result = func(*args) File "/usr/lib/python2.4/urllib2.py", line 573, in <lambda> lambda r, proxy=url, type=type, meth=self.proxy_open: \ File "/usr/lib/python2.4/urllib2.py", line 580, in proxy_open if '@' in host: TypeError: iterable argument required
在网上查了好久,也没有找到原因。突然想起是不是代理设定的不够规范呀。重新设定了代理。
export http_proxy=http://172.25.75.2:8080/
OK,ncurses-devel顺利安装成功。
然后,跑到ruby安装目录的ext/readline下,执行下边的命令。
ruby extconf.rb && make && make install
怎么又
ruby extconf.rb checking for tgetnum() in -lncurses... yes checking for readline/readline.h... no checking for editline/readline.h... no
居然又少readline.h。啊啊。装readline-devel吧。
yum install readline-devel
再执行
ruby extconf.rb && make && make install
终于可以执行ruby script/console了。
发表评论
-
ActiveRecord::Base.update 的 alias_method_chain 顺序变化
2010-07-19 11:01 1312alias_method_chain有非常强大的功能,使得我们 ... -
Ruby:按照插入的顺序取出要素
2010-07-12 00:37 1090利用pseudohash库的PseudoHash类,可以实现按 ... -
Ruby时区转换
2010-07-11 22:27 2541要将MySQL数据库中的数据,由日本服务器转移到美国服务器。日 ... -
项目中使用的Rails版本升级 2.2.2=>2.3.8
2010-06-25 15:40 1592项目中使用的Rails版本是2.2.2,想升级到到最新的2.3 ... -
搭建一个自己的Ruby博客系统(toto+heroku+免费域名)
2010-06-21 02:53 8494要有自己的博客系统,首先要有自己的空间 Heroku是著名的R ... -
用Ruby播放音乐
2010-06-19 03:53 1819《The Ruby Way》第14章,记述了一段代码可以调用W ... -
读《The Ruby Way》之运行外部程序
2010-06-17 02:32 1731西班牙输了,这次世界杯强队的表现真是没话可说了。 Ruby里 ... -
读《The Ruby Way》之线程
2010-06-14 19:08 1150经常提及线程,但是用线程编的程序真的是不多。仔细的学习一下吧。 ... -
读《The Ruby Way》之数值计算
2010-06-13 23:18 923世界杯至今为止的比赛都看了,不过很多比赛都是在三心二意的看,凌 ... -
读《The Ruby Way》之正则表达式
2010-06-12 22:19 990世界杯开幕了,看了三场球。南非1-1墨西哥,法国0-0乌拉圭, ... -
读《The Ruby Way》之格式化字符串
2010-06-12 00:06 1785一边看世界杯,一边看书。 这一章介绍了很多的字符串处理函数 ... -
读《The Ruby Way》
2010-06-10 21:21 1009从06年10月开始接触Ruby,眨眼间已经过了3年半了。虽然用 ... -
试用GtkSimpleLayout制作UI
2010-06-10 01:26 1309rubynroll的《300行代码你 ... -
Ruby GUI编程
2010-06-08 19:38 3210Ruby比较成熟的GUI绑定库 ... -
Rails国际化(i18n)
2010-06-07 21:15 5517很早就知道国际化,就知道i18n,却不知道是什么原因。原来in ... -
更新rails的时候发生错误,Invalid Gem format
2009-02-02 17:18 2194今天把rails的版本升级到2.2.2的时候,发生了以下错误。 ... -
让Rails的数据库连接更快--把Ruby/MySQL升级到2.8
2008-12-12 17:46 1727装了C版本的MySQL数据库适配器以后,Rails工程的性能确 ... -
把Rails2.1的默认数据库由sqlite3改回mysql
2008-12-12 16:23 1511装了Rails2.1.2,新生成工程的时候,默认数据库居然是s ... -
cache_fu的关联补丁(belongs_to, has_one)
2008-09-08 23:15 1138为了缓解数据库服务器 ... -
日本Ruby会议2008(6/20-6/22)
2008-06-21 10:48 1206日本Ruby会议2008,于6/20-6/22在茨城县筑波市举 ...
相关推荐
TypeError: ‘required’ is an invalid argument for positionals 的解决方法 当我在使用argparse模块时,遇到了如下错误: import argparse parser = argparse.ArgumentParser(description = 'debug_example') ...
当你在定义函数时,如果没有按照这个顺序来设置参数,可能会遇到`TypeError: missing 1 required keyword-only argument`这样的错误。这个问题通常发生在尝试传递一个需要以关键字方式指定的参数,但没有提供关键字...
TypeError: Unexpected keyword argument passed to optimizer: learning_rate 3.问题定位: 先看报错代码:大概意思是, 传给优化器的learning_rate参数错误。 模型训练是在服务器Linux环境下进行的,之后在...
TypeError: loop of ufunc does not support argument 0 of type Tensor which has no callable arctan method 报错行 self.u = np.round(np.dot(self.F, self.u)) #或者 self.u = np.round(self.u + np.dot(K, ...
- **Anaconda环境下的TypeError**: 当在Anaconda环境中创建虚拟环境时,可能会遇到TypeError: LoadLibrary() argument 1 must be str, not None 的错误。这通常是由于系统路径设置不正确导致的。 - **解决方法**: ...
在使用Qt 5.8版本时,可能会遇到一个常见的错误,即`TypeError: Property 'asciify' of object Core`。这个错误通常发生在尝试访问或使用`Core`对象的`asciify`属性时,而该属性在当前环境中并未定义或者不支持。这...
TypeError: cannot concatenate ‘str’ and ‘int’ objects print str + int 的时候就会这样了 python + 作为连接符的时候,不会自动给你把int转换成str 补充知识:TypeError: cannot concatenate ‘str’ and ...
然而,在使用jQuery过程中,开发者有时会遇到JavaScript控制台抛出“Uncaught TypeError: Illegal invocation”错误。这个错误通常不是由jQuery自身引起的,而是与JavaScript作用域及上下文有关。 当我们进行Ajax...
在调整loss计算的时候遇到了TypeError: only integer tensors of a single element can be converted to an index这个问题,原来的计算公式为: self.loss_D = (self.loss_D_fake + self.loss_D_real) * 0.5 调整后...
在Python编程过程中,可能会遇到一个常见的错误提示"TypeError: 'list' object is not callable"。这个错误通常是由于程序员不小心将内置的数据结构名称如`list`、`tuple`等作为变量名,导致后续尝试调用这些内置...
今天把最近一直在开发的小程序放安卓手机上测试一下,结果某个页面就一直报错: Uncaught TypeError: Converting circular structure to JSON 先说一下基本的环境: 系统:Android 6.0.1 手机:小米4 微信版本:...
ERROR TypeError: Cannot read property 'tapPromise' of undefined TypeError: Cannot read property 'tapPromise' of undefined at /data/rondir/jenkins/workspace/iot-core-web-test/node_modules/compression-...
TypeError: _queue_reduction(): incompatible function arguments. The following argument types are supported: 1. (process_group: torch.distributed.ProcessGroup, grads_batch: List[List[at::Tensor]], ...
TypeError: notify.sendNotifybyWxPucher is not a function!
1. jQuery插件报错问题:在使用jQuery插件时可能会遇到"TypeError: $.browser is undefined"的报错,这主要是因为从jQuery 1.9版本开始,jQuery移除了$.browser和$.browser.version这两个用于获取浏览器基本信息的...
在Vue开发过程中,有时会遇到一个常见的错误:`Uncaught TypeError: Cannot assign to read only property 'exports' of object '#<Object>'`。这个错误通常发生在使用Webpack打包Vue应用时,由于模块导入导出规范的...