60 wget -O/etc/apt/trusted.gpg.d/logilab.gpg https://www.logilab.fr/logilab-debian-keyring.gpg |
60 wget -O/etc/apt/trusted.gpg.d/logilab.gpg https://www.logilab.fr/logilab-debian-keyring.gpg |
61 |
61 |
62 Update your list of packages and perform the installation:: |
62 Update your list of packages and perform the installation:: |
63 |
63 |
64 apt-get update |
64 apt-get update |
65 apt-get install cubicweb cubicweb-dev |
65 apt-get install python3-cubicweb --install-recommends |
66 |
66 |
67 # if you want pyramid, the recommended application server |
67 ``python3-cubicweb`` installs the framework itself, allowing you to create new |
68 apt-get install pyramid-cubicweb |
68 instances. Installing recommended packages will install the development |
69 |
69 environment allowing you to develop new cubes. |
70 ``cubicweb`` installs the framework itself, allowing you to create new |
|
71 instances. ``cubicweb-dev`` installs the development environment |
|
72 allowing you to develop new cubes. |
|
73 |
70 |
74 There is also a wide variety of :ref:`cubes <AvailableCubes>`. You can access a |
71 There is also a wide variety of :ref:`cubes <AvailableCubes>`. You can access a |
75 list of available cubes using ``apt-cache search cubicweb`` or at the |
72 list of available cubes using ``apt-cache search cubicweb`` or at the |
76 `CubicWeb.org forge`_. |
73 `CubicWeb.org forge`_. |
77 |
74 |
78 .. note:: |
75 .. note:: |
79 |
76 |
80 `cubicweb-dev` will install basic sqlite support. You can easily setup |
77 `python3-cubicweb` will install basic sqlite support. You can easily setup |
81 :ref:`cubicweb with other database <DatabaseInstallation>` using the following |
78 :ref:`cubicweb with other database <DatabaseInstallation>` using the following |
82 virtual packages : |
79 virtual packages : |
83 |
80 |
84 * `cubicweb-postgresql-support` contains the necessary dependencies for |
81 * `python3-cubicweb-postgresql-support` contains the necessary dependencies for |
85 using :ref:`cubicweb with postgresql datatabase <PostgresqlConfiguration>` |
82 using :ref:`cubicweb with postgresql datatabase <PostgresqlConfiguration>` |
86 |
|
87 * `cubicweb-mysql-support` contains the necessary dependencies for using |
|
88 :ref:`cubicweb with mysql database <MySqlConfiguration>`. |
|
89 |
83 |
90 .. _`list of sources`: http://wiki.debian.org/SourcesList |
84 .. _`list of sources`: http://wiki.debian.org/SourcesList |
91 .. _`Logilab's gnupg key`: https://www.logilab.fr/logilab-debian-keyring.gpg |
85 .. _`Logilab's gnupg key`: https://www.logilab.fr/logilab-debian-keyring.gpg |
92 .. _`CubicWeb.org Forge`: http://www.cubicweb.org/project/ |
86 .. _`CubicWeb.org Forge`: http://www.cubicweb.org/project/ |
93 |
87 |