**Win 10 下Pipenv源碼安裝 odoo12**
因?yàn)?,本身電腦已經(jīng)安裝odoo8,9,10等odoo的版本,當(dāng)時(shí),沒有考慮是直接是統(tǒng)一的環(huán)境很配置。
現(xiàn)在,在odoo11的環(huán)境下,需要Python 3的語言環(huán)境可以很好地支持odoo11的功能,所以在網(wǎng)上查到了現(xiàn)在比較火的創(chuàng)建虛擬環(huán)境的安裝工具 pipenv,用它可以很好地隔離各個(gè)項(xiàng)目環(huán)境,為每一個(gè)項(xiàng)目都提供單獨(dú)的運(yùn)行環(huán)境。
安裝步驟:
一、 安裝 Python 3.6.4,配置環(huán)境變量:
地址:https://www.python.org/downloads/
二、下載odoo12的源碼包:
https://github.com/odoo/odoo
三、安裝pipenv:
1、 首先使用pip安裝Pipenv及其依賴項(xiàng):
pip install pipenv
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)公司!專注于網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、微信平臺小程序開發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了成華免費(fèi)建站歡迎大家使用!
2、 將目錄更改為包含你的Python項(xiàng)目的文件夾:
C:\Users\Administrator>f:
F:\>cd odoo2018_11
3、 在Python項(xiàng)目的文件夾下,指定pipenv 要安裝odoo12的Python虛擬環(huán)境,并啟動(dòng)Pipenv
F:\odoo2018_11>pipenv --python "D:\Python 3.6.4\Python 3.6.4\python.exe"
F:\odoo2018_11>pipenv install
4、 在Python編譯器中加載虛擬環(huán)境并安裝依賴包:
四、odoo12啟動(dòng)過程中遇到的問題,及解決辦法:
1、ImportError: No module named ‘win32service’
pipenv install pypiwin32
2、ImportError: No module named ‘PIL’
pipenv install Pillow
3、 No module named 'ForkingMixIn'
將Werkzeug升級到0.11.15
pipenv install Werkzeug==0.11.15
4、 ModuleNotFoundError: No module named 'reportlab'
pipenv install reportlab
5、 psycopg2.OperationalError: fe_sendauth: no password supplied
在setup目錄下 新建odoo.conf 文件
6、 window 安裝 odoo12 報(bào)錯(cuò) ValueError: embedded null byte
在D:\Python 3.6.4\Python 3.6.4\Lib\_strptime.py下,添加代碼:
locale.setlocale(locale.LC_ALL, 'en')
7、更新試用ODOO12最新版本的,網(wǎng)頁打開不正常尋求幫助。
Could not execute command 'sassc'This error occured while compiling the bundle 'web.assets_common' containing:
問題日志報(bào)錯(cuò):
Style error
The style compilation failed, see the error below. Your recent actions may be the cause, please try reverting the changes you made.
Could not execute command 'sassc'This error occured while compiling the bundle 'web.assets_common' containing:
- /web/static/lib/bootstrap/scss/bootstrap/_mixins.scss
- /web/static/src/scss/utils.scss
- /web/static/src/scss/primary_variables.scss
- /web_editor/static/src/scss/web_editor.variables.scss
- /web/static/src/scss/secondary_variables.scss
- /web/static/lib/bootstrap/scss/bootstrap/_variables.scss
- /web/static/lib/bootstrap-datetimepicker/src/scss/_bootstrap-datetimepicker.scss
- /web/static/src/scss/fonts.scss
- /web/static/src/scss/ui.scss
- /web/static/src/scss/ui_extra.scss
- /web/static/src/scss/navbar.scss
- /web/static/src/scss/mimetypes.scss
- /web/static/src/scss/modal.scss
- /web/static/src/scss/animation.scss
- /web/static/src/scss/rainbow.scss
- /web/static/src/scss/datepicker.scss
- /web_tour/static/src/scss/tip.scss
- /web_tour/static/src/scss/keyframes.scss
解決方法:
給odoo應(yīng)用安裝sassc的依賴庫,命令:pip install libsass
結(jié)果: