File tree 2 files changed +10
-6
lines changed
content/administration/on_premise
2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -277,18 +277,22 @@ Dependencies
277
277
278
278
.. tab :: Debian/Ubuntu
279
279
280
- For Debian-based systems, the packages are listed in the `debian/control
281
- <{GITHUB_PATH}/debian/control> `_ file of the Odoo sources.
282
-
283
280
On Debian/Ubuntu, the following commands should install the required packages:
284
281
285
282
.. code-block :: console
286
283
287
- $ cd /CommunityPath
288
- $ sed -n -e '/^Depends:/,/^Pre/ s/ python3-\(.*\),/python3-\1/p' debian/control | sudo xargs apt-get install -y
284
+ $ cd odoo #CommunityPath
285
+ $ sudo ./setup/debinstall.sh
286
+
287
+ The `setup/debinstall.sh ` script will parse the `debian/control
288
+ <{GITHUB_PATH}/debian/control> `_ file and install the found packages.
289
289
290
290
.. tab :: Install with pip
291
291
292
+ .. warning ::
293
+ Using pip may lead to security issues and broken dependencies; only do this if you
294
+ know what you are doing.
295
+
292
296
As some of the Python packages need a compilation step, they require system libraries to
293
297
be installed.
294
298
Original file line number Diff line number Diff line change 5
5
6
6
7
7
REDIRECT_RULE_RE = re .compile (r'^[ \t]*([\w\-/]+\.rst)[ \t]+([\w\-/]+\.rst)[ \t]*(?:#.*)?$' )
8
- REDIRECTS_FILE_VERSION_RE = re .compile ('(?:redirects/)?(?:saas-)?(\d\d\.\d)\.txt' )
8
+ REDIRECTS_FILE_VERSION_RE = re .compile (r '(?:redirects/)?(?:saas-)?(\d\d\.\d)\.txt' )
9
9
10
10
11
11
@sphinxlint .checker ('.txt' )
You can’t perform that action at this time.
0 commit comments