1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-08-19 19:10:54 +00:00
This commit is contained in:
Unrud 2017-05-24 19:13:47 +02:00
parent 4c5e6a3416
commit 0cbdea014c
15 changed files with 647 additions and 82 deletions

View file

@ -8,50 +8,42 @@ 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.
Follow one of the chapters below depending on your operating system.
When Radicale is launched, you can check that everything is OK by opening
[http://localhost:5232/](http://localhost:5232/) in your favourite browser:
you'll get a "Radicale works!" message.
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
may be time to [install it "The Right Way"]({{ site.baseurl }}/install/).
may be time to for [some basic configuration](/setup/).
## Linux / *BSD
Follow one of the chapters below depending on your operating system.
Installing Radicale on Linux or *BSD is often really easy.
## Linux / \*BSD
First of all, check that you have Python 3.4 or superior installed, or install
it thanks to your package manager. Then open a console and type:
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``.
$ pip3 install radicale
$ python3 -m radicale --debug --storage-filesystem-folder=~/.local/radicale
...
Radicale server ready
Then open a console and type:
## Windows
First of all: please install all the Windows updates available for your version
of Windows! (But it's already done, isn't it?)
The next step on Windows is to intall Python. Go to
[python.org](http://python.org) and download the latest version of Python. Run
the installer.
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!
Then launch a command prompt, and type:
C:\Users\MyName> python -m pip install radicale
C:\Users\MyName> python -m radicale --debug --storage-filesystem-folder=~/radicale
...
Radicale server ready
$ python3 -m pip install --upgrade radicale
$ python3 -m radicale --config /dev/null --storage-filesystem-folder=~/.var/lib/radicale/collections
Victory! Open [http://localhost:5232/](http://localhost:5232/) in your browser
and enjoy the "Radicale works!" message!
## macOS
## Windows
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.
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!
Launch a command prompt and type:
C:\Users\MyName> python -m pip install --upgrade radicale
C:\Users\MyName> python -m radicale --storage-filesystem-folder=~/radicale
Victory! Open [http://localhost:5232/](http://localhost:5232/) in your browser
and enjoy the "Radicale works!" message!
## MacOS
*To be written.*