Menu

Install And Enable

Richie Bendall

Before starting, ensure you have installed and enabled ROS Code:

Install:

Download the installer from the official download page at http://www.ros-code.ga

Enable:

Normal method:

Type in The IDLE or Shell: import ros
To execute a command, type ros.[command]

Don't use the ros prefix:

Type in The IDLE or Shell: from ros import *
To execute a command, type [command]

Enable a specific command:

Type in The IDLE or Shell: from ros import [command]
To execute a command, type ros.[command]

Use a different prefix other than ros

Type in The IDLE or Shell: import ros as [prefix]
To execute a command, type ros.[command]

Enable a specific command and rename it:

Type in The IDLE or Shell: from ros import [command] as [name]
To execute a command, type ros.[name]


MongoDB Logo MongoDB