Difference between revisions of "Robocode/Download And Install"
(A few little changes) |
(Updated links to other pages) |
||
Line 22: | Line 22: | ||
== See also == | == See also == | ||
+ | |||
+ | === News and Releases === | ||
+ | * [http://sourceforge.net/project/showfiles.php?group_id=37202&package_id=29609 Robocode file releases] | ||
+ | * [http://sourceforge.net/export/rss2_project.php?group_id=37202 RSS Feeds for the Robocode project] | ||
+ | |||
+ | === Tutorials === | ||
* [[Robocode/System Requirements|System Requirements for Robocode]] | * [[Robocode/System Requirements|System Requirements for Robocode]] | ||
− | * [[Robocode/ | + | * [[Robocode/Download|How to download and install Robocode]] |
+ | * [[Robocode/Robot Anatomy|The anatomy of a robot]] | ||
* [[Robocode/Getting Started|Getting started with Robocode]] | * [[Robocode/Getting Started|Getting started with Robocode]] | ||
+ | * [[Robocode/My First Robot|My First Robot Tutorial]] | ||
+ | * [[Robocode/Game Physics|Robocode Game Physics]] | ||
+ | * [[Robocode/Scoring|Scoring in Robocode]] | ||
+ | * [[Robocode/Robot Console|Using the robot console]] | ||
+ | * [[Robocode/Learning from Robots|Learning from other robots]] | ||
+ | * [[Robocode/Package Robot|Package your robot]] | ||
* [[Robocode/FAQ|Frequently Asked Questions (FAQ)]] | * [[Robocode/FAQ|Frequently Asked Questions (FAQ)]] | ||
− | * [[ | + | * [[Robocode/Articles|Articles about Robocode]] |
+ | * [[Robocode/Console Usage|Starting Robocode from the command line]] | ||
+ | * [[Robocode/Graphical_Debugging|Graphical debugging]] | ||
+ | * [[Robocode/Using an IDE|Using Eclipse as IDE]] | ||
+ | * [[Robocode/Eclipse/Create_a_Project|Creating a project for your robots]] | ||
+ | * [[Robocode/Eclipse/Create_a_Robot|Creating a robot in Eclipse]] | ||
+ | * [[Robocode/Running from Eclipse|Running your robot from Eclipse]] | ||
+ | * [[Robocode/Eclipse/Debugging Robot|Debugging your robot with Eclipse]] | ||
− | == | + | === Home pages === |
− | * [http://sourceforge.net/ | + | * [http://robocode.sourceforge.net/ Classic homepage] |
− | * [http://sourceforge.net/ | + | * [http://sourceforge.net/projects/robocode Robocode project at SourceForge] |
+ | * [http://robocoderepository.com/ Robocode Repository] | ||
+ | * [[wikipedia:Robocode|Wikipediaentry for Robocode]] | ||
[[Category:Robocode Documentation]] | [[Category:Robocode Documentation]] |
Revision as of 22:05, 10 October 2008
This page describes how to download and install the Robocode game.
Contents
How to download Robocode
NOTE: Java must be installed in order to install and run Robocode! See the System Requirements page for more info.
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-setup-x.y.z.jar, where "x.y.z" indicates the version number.
How to install Robocode
If Java has been properly installed (see System Requirements), you should be able to install Robocode by opening the downloaded setup file (the JAR file).
Alternatively, you could open a command prompt / shell where you change the current directory (using the cd
command) to the directory you downloaded the Robocode setup file into, and then type:
java -jar robocode-setup-x.y.z.jar
Of course the x.y.z must be replaced with the Robocode version you are going to install.
How to get notified about new releases
If you want to know exactly when a new release is available, you can subscribe to the Robocode file release RSS feed. The feed will provide you with a link to both the release notes and where to download Robocode.
See also
News and Releases
Tutorials
- System Requirements for Robocode
- How to download and install Robocode
- The anatomy of a robot
- Getting started with Robocode
- My First Robot Tutorial
- Robocode Game Physics
- Scoring in Robocode
- Using the robot console
- Learning from other robots
- Package your robot
- Frequently Asked Questions (FAQ)
- Articles about Robocode
- Starting Robocode from the command line
- Graphical debugging
- Using Eclipse as IDE
- Creating a project for your robots
- Creating a robot in Eclipse
- Running your robot from Eclipse
- Debugging your robot with Eclipse