Difference between revisions of "Robocode/Download And Install"
J2sentient (talk | contribs) m (→Ubuntu/Debian) |
m (Better code formatting) |
||
(14 intermediate revisions by 8 users not shown) | |||
Line 1: | Line 1: | ||
This page describes how to download and install the [[Robocode]] game. | This page describes how to download and install the [[Robocode]] game. | ||
− | == | + | == Downloading Robocode == |
− | + | Robocode can be downloaded from the [http://sourceforge.net/projects/robocode/files/robocode/ download page at SourceForge]. This page contains all Robocode releases available for download. | |
− | + | The file you want to download is a JAR (Java ARchive) file, which is in fact a renamed zip file used for distributing Java programs. The name of the file will be named something like '''<code>robocode-a.b.c.d-setup.jar</code>''', where <code>a.b.c.d</code> indicates the version number. | |
− | + | '''Note to Debian, Ubuntu, Mint, etc. users:''' A slightly out of date version of Robocode is available in the "universe" section of the apt repositories. Do not install that version. It is extremely outdated and isn't supported by the Robocode community. | |
− | == | + | == Installing prerequisites == |
− | + | Make sure that you have followed [[Robocode/System Requirements|these instructions]], and that Java is installed correctly. | |
− | == | + | == Installing Robocode == |
− | If Java has been | + | {{Youtube|GyVH8_C1QbQ|Windows Installation}} |
+ | {{Youtube|y53rY5YoRWw|Linux Installation}} | ||
+ | If Java has been correctly installed and configured, you should be able to run the installer by double-clicking it. | ||
− | + | If the installer doesn't display, continue on the next section. | |
− | |||
− | |||
− | |||
− | + | == Installing Robocode from the command line == | |
− | + | #Open a shell. | |
− | == | + | #* On Windows, search for "Command Prompt" in the Start Menu, and run it. |
− | + | #* On macOS, search for "Terminal" in Spotlight, and run it. | |
− | + | #* On Linux, search "Terminal", "Konsole", or "xTerm" in your application launcher, and run it. | |
− | + | #Drag <code>robocode-a.b.c.d-setup.jar</code> to your Desktop. | |
− | + | #On Windows, type and enter: | |
− | + | #:<syntaxhighlight lang="bash">cd "%UserProfile\Desktop"</syntaxhighlight> | |
− | If | + | #:On macOS or Linux, type and enter: |
+ | #:<syntaxhighlight lang="bash">cd "~/Desktop"</syntaxhighlight> | ||
+ | #:If nothing is outputted, the command has succeeded. (This is typically the case for console applications.) | ||
+ | #Type and enter (replacing <code>robocode-a.b.c.d-setup.jar</code> with the filename of the Robocode installer): | ||
+ | #:<syntaxhighlight lang="bash">java -jar robocode-a.b.c.d-setup.jar</syntaxhighlight> | ||
+ | #The installer should run. If instead the previous command errors with '''java' is not recognized as an internal...'', you have not set <code>%PATH%</code> correctly. Follow [http://robowiki.net/wiki/Robocode/System_Requirements#Setting_environmental_variables_on_Windows these instructions]. | ||
== See also == | == See also == | ||
− | + | {{RobocodeDocsList}} | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
[[Category:Robocode Documentation]] | [[Category:Robocode Documentation]] |
Latest revision as of 01:16, 16 August 2017
This page describes how to download and install the Robocode game.
Contents
Downloading Robocode
Robocode can be downloaded from the download page at SourceForge. This page contains all Robocode releases available for download.
The file you want to download is a JAR (Java ARchive) file, which is in fact a renamed zip file used for distributing Java programs. The name of the file will be named something like robocode-a.b.c.d-setup.jar
, where a.b.c.d
indicates the version number.
Note to Debian, Ubuntu, Mint, etc. users: A slightly out of date version of Robocode is available in the "universe" section of the apt repositories. Do not install that version. It is extremely outdated and isn't supported by the Robocode community.
Installing prerequisites
Make sure that you have followed these instructions, and that Java is installed correctly.
Installing Robocode
If Java has been correctly installed and configured, you should be able to run the installer by double-clicking it.
If the installer doesn't display, continue on the next section.
Installing Robocode from the command line
- Open a shell.
- On Windows, search for "Command Prompt" in the Start Menu, and run it.
- On macOS, search for "Terminal" in Spotlight, and run it.
- On Linux, search "Terminal", "Konsole", or "xTerm" in your application launcher, and run it.
- Drag
robocode-a.b.c.d-setup.jar
to your Desktop. - On Windows, type and enter:
cd "%UserProfile\Desktop"
- On macOS or Linux, type and enter:
cd "~/Desktop"
- If nothing is outputted, the command has succeeded. (This is typically the case for console applications.)
- Type and enter (replacing
robocode-a.b.c.d-setup.jar
with the filename of the Robocode installer):java -jar robocode-a.b.c.d-setup.jar
- The installer should run. If instead the previous command errors with 'java' is not recognized as an internal..., you have not set
%PATH%
correctly. Follow these instructions.
See also
Robocode API
Beginner Guides
- Welcome to Robocode
- System requirements
- Download and install
- Getting started
- Frequently asked questions
- My First Robot tutorial
- Game physics
- The anatomy of a robot
- Scoring in Robocode
- Using the robot console
- Downloading other robots
- Learning from other robots
- Package your robot
- Articles about Robocode
- Starting Robocode from the command line
- Graphical debugging
External Editors
- Using Eclipse with Robocode
- Creating a project in Eclipse
- Creating a robot in Eclipse
- Running your robot from Eclipse
- Debugging your robot with Eclipse
- Using NetBeans with Robocode
- Using Gradle with Robocode