1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-06-26 16:45:52 +00:00
Radicale/tutorial.md

50 lines
1.6 KiB
Markdown
Raw Normal View History

2016-08-11 19:03:50 +02:00
---
layout: page
title: Tutorial
permalink: /tutorial/
---
You want to try Radicale but only have 5 minutes free in your calendar? Let's
go right now! You won't have the best installation ever, but it will be enough
to play a little bit with Radicale.
When everything works, you can get a [client]({{ site.baseurl }}/clients/) and
start creating calendars and address books. And if Radicale fits your needs, it
2017-05-24 19:13:47 +02:00
may be time to for [some basic configuration](/setup/).
2016-08-11 19:03:50 +02:00
2017-05-24 19:13:47 +02:00
Follow one of the chapters below depending on your operating system.
2016-08-11 19:03:50 +02:00
2017-05-24 19:13:47 +02:00
## Linux / \*BSD
2016-08-11 19:03:50 +02:00
2017-05-24 19:13:47 +02:00
First of all, make sure that **python** 3.4 or later and **pip** are
installed. On most distributions it should be enough to install the package
``python3-pip``.
2016-08-11 19:03:50 +02:00
2017-05-24 19:13:47 +02:00
Then open a console and type:
2016-08-11 19:03:50 +02:00
2017-05-24 19:13:47 +02:00
$ python3 -m pip install --upgrade radicale
2017-05-24 21:12:18 +02:00
$ python3 -m radicale --config "" --storage-filesystem-folder=~/.var/lib/radicale/collections
2016-08-11 19:03:50 +02:00
2017-05-24 19:13:47 +02:00
Victory! Open [http://localhost:5232/](http://localhost:5232/) in your browser
and enjoy the "Radicale works!" message!
2016-08-11 19:03:50 +02:00
2017-05-24 19:13:47 +02:00
## Windows
2016-08-11 19:03:50 +02:00
2017-05-24 19:13:47 +02:00
This first step is to install Python. Go to
[python.org](http://python.org) and download the latest version of Python 3.
Then run the installer.
2016-08-11 19:03:50 +02:00
On the first window of the installer, check the "Add Python to PATH" box and
click on "Install now". Wait a couple of minutes, it's done!
2017-05-24 19:13:47 +02:00
Launch a command prompt and type:
2016-08-11 19:03:50 +02:00
2017-05-24 19:13:47 +02:00
C:\Users\MyName> python -m pip install --upgrade radicale
2017-05-24 21:12:18 +02:00
C:\Users\MyName> python -m radicale --config "" --storage-filesystem-folder=~/radicale
2016-08-11 19:03:50 +02:00
Victory! Open [http://localhost:5232/](http://localhost:5232/) in your browser
and enjoy the "Radicale works!" message!
2017-05-24 19:13:47 +02:00
## MacOS
2016-08-11 19:03:50 +02:00
*To be written.*