Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
Odoo scripts
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Container Registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
XCG
Odoo scripts
Commits
2a42e6728b22
Commit
2a42e6728b22
authored
2 years ago
by
Vincent Hatakeyama
Browse files
Options
Downloads
Patches
Plain Diff
update develop installation instructions
parent
087498ca6950
No related branches found
No related tags found
2 merge requests
!125
🚑 fix pylint on odoo 11 with python 3.8
,
!123
📚 update develop installation instructions
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
DEVELOP.rst
+13
-2
13 additions, 2 deletions
DEVELOP.rst
with
13 additions
and
2 deletions
DEVELOP.rst
+
13
−
2
View file @
2a42e672
As :pep:517 does not provide a way to install for development purpose, it is necessary to follow these steps to install for development :
Installing Odoo Scripts for development
---------------------------------------
:pep:660 defines `Editable installs for pyproject.toml based builds`, this should not be necessary if your pip version is recent enough.
This should be enough to install in dev mode:
.. code-block:: SH
python3 -m pip install --user -e ".[docker,import_sql,conf2reST,source_control]" --upgrade
This can be tried to install in dev mode without using the toml file:
.. code-block:: SH
.. code-block:: SH
mv pyproject.toml pyproject.toml\~
mv pyproject.toml pyproject.toml\~
...
@@ -2,6 +13,6 @@
...
@@ -2,6 +13,6 @@
.. code-block:: SH
.. code-block:: SH
mv pyproject.toml pyproject.toml\~
mv pyproject.toml pyproject.toml\~
pip
3
install --user -e ".[docker,import_sql,conf2reST,source_control]" --upgrade
python3 -m
pip install --user -e ".[docker,import_sql,conf2reST,source_control]" --upgrade
mv pyproject.toml\~ pyproject.toml
mv pyproject.toml\~ pyproject.toml
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment