赞
踩
如:D:/odoo/
从 gitee 加速下载 16.0 分支到 D:/odoo/odoo16 文件夹
git clone https://gitee.com/mirrors/odoo.git --depth 1 --branch 16.0 --single-branch odoo16
在 D:/odoo 下创建虚拟环境
python -m venv odoo16-env
.\odoo16-env\Scripts\activate
可能需要:set-ExecutionPolicy RemoteSigned
以运行*.ps1 脚本
cd D:/odoo/odoo16
pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple/
问题: Python 模块从源码编译安装失败,可以下载编译好的安装,如:*.whl
# 安装
pip install psycopg2-binary
# 版本与odoo 不一致, 修改:requirements.txt 中的版本
psycopg2==2.9.4
[options]
addons_path = D:\odoo\odoo16\odoo\addons,D:\odoo\odoo16\addons,D:\odoo\myPrj
admin_passwd = odoo
db_host = 127.0.0.1
db_port = 5432
db_user = odoo
db_password = odoo
dbfilter = ^odoo*
{
"version": "0.2.0",
"configurations": [
{
"name": "MyPrj",
"type": "python",
"request": "launch",
"program": "D:\\odoo\\odoo16\\odoo-bin",
"console": "integratedTerminal",
"args": ["-c", "D:\\odoo\\myPrj\\odoo.conf"]
}
]
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。