-
RED
2018-08-04 19:41:08感觉用Ride写脚本总是有些限制,不喜欢...nokia/RED 官方Eclipse 选择Eclipse Ide for Java Developers 点击下一步 1.3 安装 RED RED 源码及安装使用: github.com/nokia/RED 方法一:Install from Eclipse ...感觉用Ride写脚本总是有些限制,不喜欢条条框框的,后来用了pyCharm,首先是调试不方便后来发现有个好用的工具推荐给大家
选择Eclipse Ide for Java Developers 点击下一步
1.3 安装 RED
RED 源码及安装使用: github.com/nokia/RED
方法一:Install from Eclipse Marketplace
Start Eclipse, open Help -> Eclipse Marketplace
Search for "RED Robot Editor"
Install preferred version accepting license
Restart Eclipse to apply changes
方法二:Install from zip file
Start Eclipse, accept default Workspace folder placement
Open Help -> Install New Software
Click Add -> Archive and set address in Location to:
http://master.dl.sourceforge.net/project/red-robot-editor/repository
Tick all boxes in Robot Framework IDE Category and apply Next
Accept all prompts and user licences, proceed with installation process
Restart Eclipse as prompted
Verify RED installation by opening Help -> Installation Details to check if
RED is visible on installed features list官网解析RED:
RED Robot Editor is Eclipse based editor for RobotFramework test cases.
Release contains Eclipse feature of RED Robot Editor to be installed into Eclipse.red编辑器是基于Eclipse的RobotFramework测试用例编辑器。版本包含要安装到Eclipse中的红色机器人编辑器的Eclipse特性
- Oracle Java 1.8+ https://www.java.com/
- RED feature only: Eclipse Oxygen (v 4.7), preferably IDE for Java Developers https://www.eclipse.org/downloads/
- Python/Jython & RobotFramework installed
最好是IDE用于DealsPy/Python /Jython
-
RedHat Enterprise Linux 6.4使用yum安装出现This system is not registered to Red Hat Subscription ...
2017-11-07 16:04:58我虚拟机安装的系统是RedHat Enterprise Linux 6.4-i686,是32位...This system is not registered to Red Hat Subscription Management.You can use subscription-manager to register. 经过一番研究,得出结论如果我虚拟机安装的系统是RedHat Enterprise Linux 6.4-i686,是32位的。使用yum命令安装软件时候出现以下错误:
This system is not registered to Red Hat Subscription Management.You can use subscription-manager to register.
经过一番研究,得出结论如果使用redhat的yum源是需要注册付费的,作为一名学生和初学者,我不想花钱罗,哈哈,当然有钱另说。总体思路非常简单就是卸载原来所有yum的依赖包,然后配置使用centos的yum源。这里需要注意的是每个人的环境和系统都不一样,解决方法和一些细节都不尽相同,我们需要“随机应变”,不要盲目照搬教程。
1.卸载RedHat原来的自带的yum包
使用命令 rpm -qa|grep yum 能够查看已经安装的yum包。然后使用命令 rpm -qa|grep yum|xargs rpm -e --nodeps 不检查依赖直接删除所有的rpm包。最后再次用 rpm -qa|grep yum 命令查看,发现没有任何显示,则表示卸载成功。
2.下载新的centos的yum包,然后安装
首先你得先弄清楚自己的系统版本号和系统位数,使用命令 cat /etc/issue && arch 查看,如果是i386或者i686就是32位的,如果是x86_64就是64位的。
然后到http://mirrors.kernel.org/centos/ 或者 http://mirrors.163.com/centos/ 找对应系统版本号和系统位数下载,找到yum、yum-plugin-fastestmirror、yum-metadata-parser、python-urlgrabber这四个软件包下载。如果跟我系统一样是RedHat Enterprise Linux 6.4-i686,则可以打开我分享的 https://pan.baidu.com/s/1hr5IBE8下载。
最后使用命令安装
rpm -ivh yum-metadata-parser-1.1.2.16.el6.i686.rpm
rpm -ivh yum-3.2.29-81.el6.centos.noarch.rpm yum-plugin-fastestmirror-1.1.30-40.el6.noarch.rpm python-urlgrabber-3.9.1-11.el6.noarch.rpm (把相互依赖的包一起安装)
在安装过程中因为环境不一样可能出现不同的问题。如果是因为缺少依赖包安装失败会出现 error:Failed dependencies:缺失包 is needed by 你安装的包,这种情况下,你需要下载缺失的包,然后一起安装即可。如果是因为你安装的包已经存在但是版本不一样会出现conflicts with的提示,你需要根据提示把原来的包卸载之后再次安装新的包。
3.更换yum源,使用163的源
打开http://mirrors.163.com/.help/centos.html,在里面下载对应版本的repo文件,比如我下载的是CentOS6-Base-163.repo文件,然后把它放到/etc/yum.repos.d/下。还需要打开CentOS6-Base-163.repo文件修改$releasever为版本号6,修改后的文件已分享至https://pan.baidu.com/s/1boYZfqf
已经修改后的文件内容如下:
# CentOS-Base.repo
#
# The mirror system uses the connecting IP address of the client and the
# update status of each mirror to pick mirrors that are updated to and
# geographically close to the client. You should use this for CentOS updates
# unless you are manually picking other mirrors.
#
# If the mirrorlist= does not work for you, as a fall back you can try the
# remarked out baseurl= line instead.
#
#
[base]
name=CentOS-6 - Base - 163.com
baseurl=http://mirrors.163.com/centos/6/os/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=6&arch=$basearch&repo=os
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-6
#released updates
[updates]
name=CentOS-6 - Updates - 163.com
baseurl=http://mirrors.163.com/centos/6/updates/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=6&arch=$basearch&repo=updates
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-6
#additional packages that may be useful
[extras]
name=CentOS-6 - Extras - 163.com
baseurl=http://mirrors.163.com/centos/6/extras/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=6&arch=$basearch&repo=extras
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-6
#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-6 - Plus - 163.com
baseurl=http://mirrors.163.com/centos/6/centosplus/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=6&arch=$basearch&repo=centosplus
gpgcheck=1
enabled=0
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-6
#contrib - packages by Centos Users
[contrib]
name=CentOS-6 - Contrib - 163.com
baseurl=http://mirrors.163.com/centos/6/contrib/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=6&arch=$basearch&repo=contrib
gpgcheck=1
enabled=0
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-64.清除原有缓存
使用命令 yum clean all 清除原来的缓存。
5.重新建立缓存
使用命令 yum makecache 重建缓存。
-
Red语言
2019-09-17 12:41:31Red下载https://red.github.io/index_CN.html#download Red官网:https://www.red-lang.org Red语法的文档地址:http://static.red-lang.org/red-system-specs-light.html 简介:http://redprogramming.com/Home.html ...Red下载https://red.github.io/index_CN.html#download
Red官网:https://www.red-lang.org
Red语法的文档地址:http://static.red-lang.org/red-system-specs-light.html
简介:http://redprogramming.com/Home.html
Gitbook书籍:https://ungaretti.gitbooks.io/red-language-notebook/content/
GitHub源码地址(包括其他资料):https://github.com/red/red
GitHub上的Red Wiki:https://github.com/red/red/wiki -
使用Red5创建 red5项目
2016-12-21 17:54:16使用red5插件创建一个web项目 首先我们先安装red-server。 下载地址 https://github.com/Red5/red5-server/releases。我下载的是red5-server-1.0.8-M13.tar.gz. 直接将该解压缩就可以了。 1 点击Eclipse左上角File...使用red5插件创建一个red5项目
首先我们先安装red-server。
下载地址 https://github.com/Red5/red5-server/releases。我下载版本是red5-server-1.0.8-M13.tar.gz.
直接将该文件解压缩就可以了。
现在看创建red5项目的步骤:
1 点击Eclipse左上角File,点击New,选择Web目录下的Dynamic Web project。点击Next
2 填写工程名Project name,如果这是第一次使用 Red5 插件创建项目,必须创建一个 "Target Runtime"。它默认是 <None>,我们点击右侧的 "New Runtime." 按钮。
3 选择Infrared5下的Red5 Server Runtime,点击Next。
4 选择合适的jre;点击Browse,选择red5-server的路径。点击Finish。
5 选择合适的web version,Configuration选择Default Configuration for Red5 Server Runtime。点击Finish。
6 找到“Servers”导航栏,点击New、Server,
7 Server name选择Red5 Server Runtime at localhost ,Server runtime environment 选择Red5 Server Runtime,点击Next。
8 Auto Deploy Directory 选择 G:\tools\red5-server-1.0.8-M13\webapps,
Start Scriptv 选择 G:/tools/red5-server-1.0.8-M13/red5-debug.bat(windows 下选.bat文件,linux选择.sh)。
Stop Script 选择 G:/tools/red5-server-1.0.8-M13/red5-shutdown.bat
上面这三个路径要更改成自己安装red-server'的路径。
端口号可以改,也可以使用默认的,我这里没有更改。
点击Next。
9 选中red5-live,点击add。然后点击Finish。
10 在Servers下面会看到我们配置的工程,现在就配置好了。
11 右击Red5 Server Runtime at localhost ,点击Debug就可以运行了。
在浏览器中输入http://localhost:5080/ 也可以打开。
-
node-red教程1 node-red简介
2018-06-19 17:29:38• 一个偶然的机会,认识了node-red。这种拖拽控件编写代码的方式给了我很深刻的印象。由于我平时工作偏向硬件,所以对这些华丽的前端技术技术不是很了解,但个人认为,node-red技术在搭建具备网络与图形化功能的... -
Red Hat Linux 安装教程
2018-11-10 21:22:34Red Hat Linux 下载链接与安装步骤 -
Red Hat Enterprise Linux 官方正式版镜像下载
2017-12-11 10:05:26Red Hat Enterprise Linux是美国红帽公司开发的商业市场导向的Linux发行版,为方便大家学习研究,整理分享历代红帽官方正式版镜像给有需要的朋友们。 下载地址:... -
red5-1.0.1
2014-12-17 16:24:02setup-Red5-1.0.1-java6.exe 可用于下载 来播放rtmp -
Red Hat Enterprise Linux 7.9 下载
2019-09-05 00:10:07Red Hat Enterprise Linux 7.7 下载 链接: https://pan.你懂的.com/s/1JzerTht7seAu93S2H9pljQ 提取码: n8tv 链接: https://pan.你懂的.com/s/14csR7RO6S0rb_GjOiA4U8w 提取码: 6s5o 链接: ... -
Node-RED从入门到实战教程
2020-10-19 11:20:12Node-RED是工业网物联网的重要组成部分,我最开始接触Node-RED,也算是一个偶然的机会吧,上班后领导安排我的第一个任务就是调研一下Node-RED,我之后上网查了一下,那个时候网上相对于Node-RED的资料也比较少,只... -
【Node-RED】阿里云ubuntu18安装Node-RED+Node-RED加载自定义节点
2020-07-03 09:10:57ubuntu18安装Node-RED+Node-RED加载自定义节点。 大约两年前,接触了【Node-RED】,当时没在意,现在回看确实很强大。。。 安装: 安装很简单,几行命令搞定。 curl -sL ... -
Red Gate Kegen 注册机 免费 破解
2012-09-30 10:39:03Red Gate Kegen 注册机 全系列 破解 详情请参见 http://www.cnblogs.com/VAllen/archive/2012/09/26/SQLCompare.html -
Node-RED
2019-07-24 18:17:04几年前就从树莓派,arduino 等创客教程中看到了Node-RED。只知道它是IBM 公司的一个开源项目-基于数据流(dataflow)的可视化编程工具。网上的许多文章和例子大都是树莓PI,arduino的node-RED/ IoT 例子,这给我造成 ... -
Red packet
2016-07-27 20:50:21Our big boss Wine93 will distribute some “Red Package”, just like Alipay and Wechat. Wine93 has m yuan, he decides to distribute them to n people and everyone can get some money(0 yua -
Learning Node-RED 1.Node-RED简介
2018-06-20 00:21:13Node-RED是IBM在2013年末开发的一个开源项目,目的用于快速构建物联网应用。之后越来越多的人开始使用Node-RED,直到现在,Node-RED依然在不断更新和维护。 Node-RED的特点 Node-RED最大的特点在于其反应的是可视... -
node-red教程 8.2 node-red收发邮件(基于QQ邮箱)
2018-06-21 11:06:068.2 node-red收发邮件-基于QQ邮箱 在一台联网的设备上,node-red可以使用邮箱控件来收发邮件。网上有很多教程都是基于外国的邮箱,这里介绍一个基于QQ邮箱的案例。 8.2.1 邮箱控件简介 输入邮箱控件 从... -
dockera安装nodered
2020-05-02 20:04:32前提摘要 我的是arm的平台,所以安装的方法适合大多数的arm平台 安装 首先运行 docker pull nodered/...docker run -it -p 1880:1880 --name nodered nodered/node-red 使用 然后浏览器输入当前机器的ip+:1880 ... -
eclipse安装red5插件,创建red5项目
2018-05-08 16:21:05eclipse安装red5插件地址为https://github.com/Red5/red5-eclipse-plugin安装步骤:1、在github下载zip文件夹并解压,使用eclipse打开项目。如图:然后单击file选择export,在弹出框中搜索Deployable plug-ins and ... -
red hat官方的rhel操作系统版本号与内核版本号的对应关系
2015-12-01 13:30:21原文在如下网址:... The tables below list the major and minor Red Hat Enterprise Linux updates, their release dates, and the kernel versions that shipped with them. Re -
Node-RED简介
2019-06-27 17:51:16这一章将会向您介绍一些Node-RED的样例,让了解了Node-RED功能的同时又介绍它的基本概念,我们还将讨论Node-RED的历史及其起源,以便让您了解Node-RED所擅长的灵域以及对于相对传统的编程语言和环境具有哪些优势,何... -
[RED5]用red5做视频直播(red5流媒体直播)
2016-02-14 17:37:382. 下载Red5安装文件(setup-Red5-1.0.1): http://www.red5.org 3. 发布视频直播流,可以用FMLE软件。 4. 下载极酷阳光支持RTMP直播的播放器:http://demo.cuplayer.com/PlayerFashion/Basic/rtmp/rtmp.rar -
Robotframework-RED-red.xml引用library的介绍
2019-11-16 10:38:031.RED编辑器中直接引用library,会报错的,鼠标放到报错信息上,会有提示,如下图: *** Settings *** Library SeleniumLibrary 2.此时鼠标选中SeleniumLibrary,然后按ctrl+1,提示:尝试查找... -
【学习node-red】在Ubuntu中安装node-red
2019-06-27 11:00:35一、安装node-red 在Ubuntu中依次输入: sudo apt-get install nodejs sudo apt-get install npm sudo npm install -g node-red node-red 在输入命令期间可能会出现如下这个问题 alexander@alexander-virtual-... -
red5 pro
2016-10-13 20:50:15red5 pro配置 -
Learning Node-RED 3.Node-RED的编程模型
2018-07-08 22:07:18本节主要介绍Node-RED平台的关键概念和一些关键组件,并通过具体实例说明Node-RED的编程模型。数据流程(flow),flow是Node-RED中最重要的概念,一个flow流程就是一个Node-RED程序,它是由多个节点相互连接在一起... -
如何从 Red Hat Enterprise Linux 6 升级到 Red Hat Enterprise Linux 7?
2019-09-04 21:07:17如何从 Red Hat Enterprise Linux 6 升级到 Red Hat Enterprise Linux 7? SOLUTION VERIFIED- UpdatedJanuary 2 2019 at 1:19 AM- Chinese Environment Red Hat Enterprise Linux 6.x 到 Red Hat Enterprise ... -
Red Gate 破解
2019-01-08 08:43:54Red Gate 的产品包括好几个,但是我最喜欢的是SQL Prompt,原始文件的下载,可以在google中搜索Red Gate,即可找到。书写SQL语句相当方便。有类似与VS的智能感知。使用时,将其添加到“assembly”里面,就可以了。... -
Node-RED教程
2019-06-26 10:59:13Node-RED Tutorial Home 这是让你开始Node-RED的一系列指南。从最基本的开始,它向您介绍Node-RED如何工作以及如何充分利用其内置的节点。每堂课由一系列的实际例子组成,带你用简单的步骤逐渐掌握Node-RED编程。 Node...
-
uni-app实战专题
-
运放第1部《运放设计电路实战入门视频》学习笔记
-
python从入门到全栈开发·入门篇
-
【数据分析-随到随学】Python语法强化与数据处理
-
pycham用pip命令安装第三方库出现error: command ‘C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\BIN\\
-
基于arduino——pid循迹小车.zip
-
STM32-NRF24L01一对一.rar
-
three.js入门速成
-
LeetCode-131-分割回文串
-
图像处理实验-邻域平均化-图像二值化-噪声去除-均衡化
-
小白自学Photoshop美工人像抠图平面设计全套教程
-
砍价小程序怎么变成二维码(小程序码)
-
(新)备战2021软考网络规划设计师培训学习套餐
-
2021春招必备Java面试题大全(七)操作系统 持续更新
-
ACM模板和一些题目的代码实现
-
第三方SDK集成库,授权/分享/支付
-
堆排序
-
书店管理系统课设(JSP+J2EE).rar
-
(新)备战2021软考网络工程师顺利通关培训套餐
-
(新)备战2021软考网络工程师分类强化培训套餐