You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The RIOT API itself can be built from the code using doxygen. The latest
118
-
version of the documentation is uploaded daily to
119
-
[doc.riot-os.org](https://doc.riot-os.org).
120
86
121
-
Using Windows? Use [this guide][dev-setup-windows] to
122
-
[setup the development environment][dev-setup-windows].
87
+
***Start here:**
88
+
Our comprehensive [Getting Started Guide](https://guide.riot-os.org/getting-started/installing/)
89
+
walks you through installation and your first RIOT applications.
90
+
91
+
***Learn by doing:**
92
+
* Try our [hands-on tutorials](https://github.com/RIOT-OS/Tutorials) designed for beginners
93
+
* Take the [RIOT online course](https://github.com/RIOT-OS/riot-course) at your own pace
123
94
124
-
[dev-setup-windows]: doc/guides/setup-windows
95
+
***Explore the API:** Check out the [API documentation](https://doc.riot-os.org/)
96
+
for detailed information on RIOT's features and functions.
125
97
126
98
## Community
127
99
@@ -155,6 +127,31 @@ only "this isn't working". These details include:
155
127
156
128
RIOT closely collaborates with and inspires other open source projects, e.g., [Ariel OS](https://ariel-os.org/), an IoT OS written in Rust. We are more than happy to collaborate with those who share our [vision](https://doc.riot-os.org/vision.html).
157
129
130
+
## Getting RIOT
131
+
132
+
The most convenient way to get RIOT is to clone it via Git
133
+
134
+
```console
135
+
$ git clone https://github.com/RIOT-OS/RIOT
136
+
```
137
+
138
+
this will ensure that you get all the newest features and bug fixes with the
139
+
caveat of an ever changing work environment.
140
+
141
+
If you prefer things more stable, you can download the source code of one of our
142
+
quarter annual releases [via Github][releases] as ZIP file or tarball. You can
143
+
also checkout a release in a cloned Git repository using
144
+
145
+
```console
146
+
$ git pull --tags
147
+
$ git checkout <YYYY.MM>
148
+
```
149
+
150
+
For more details on our release cycle, check our [documentation][release cycle].
0 commit comments