码迷,mamicode.com
首页 > 其他好文 > 详细

Odoo环境搭建之问题readme

时间:2020-11-07 16:12:06      阅读:16      评论:0      收藏:0      [点我收藏+]

标签:安装路径   pack   str   warning   lang   工具   timeout   data   ==   

环境及工具
Windows,PyCharm Community Edition,postgresql-13.0-1

启动odoo环境

python odoo-bin

如果你只是还是空壳,启动odoo之后,他将会给你开始报错告诉你缺失了哪些模块,下面的命令可以帮助你更好地继续安装:

pip install pypdf2
python -m pip install --upgrade pip
pip install passlib --user
pip install babel
pip install lxml
pip install polib
pip install  pywin32
python -m pip install --user psycopg2
python -m pip install werkzeug --user
pip install Werkzeug==0.11.15
pip install psutil --user
python -m pip install jinja2 --user
python -m pip install reportlab --user
python -m pip install html2text --user
python -m pip install docutils --user
python -m pip install Wkhtmltopdf --user
python -m pip install num2words --user
python -m pip install libsass --user
python -m pip install Crypto --user
python -m pip install wheel --user

常见问题

WARNING: Retrying (Retry(total=4, connect=None, read=None,redirect=None, status=None)) after connection broken by ‘ReadTimeoutError("HTTPSConnectionPool(host=‘pypi.org‘, port=443): Read timed out. (read timeout=15)")‘: /simple/pypdf2/
WARNING: Retrying(Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by ‘ReadTimeoutError("HTTPSConnectionPool(host=‘pypi.org‘, port=443):Read timed out. (read timeout=15)")‘: /simple/pypdf2/

解决

pip install keras -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
pip install selectivesearch -i http://pypi.douban.com/simple --trusted-host pypi.douban.com --user

--ModuleNotFoundError: No module named ‘Crypto‘--

pip uninstall crypto
pip uninstall pycrypto
pip install pycryptodome

找到安装路径C:\Users\22154[account]\AppData\Roaming\Python\Python38\site-packages(部分电脑的存储可能会有些许差异), 将文件夹crypto改成Crypto;继续运行,就会看到新的报错缺失模块itsdangerous,利用pip install 安装上即可

pip install itsdangerous --user

--无法安装psycopg2-- Could not install packages due to an EnvironmentError: [WinError 5] 拒绝访问--

python -m pip install --upgrade requests
python -m pip install --user psycopg2

Odoo环境搭建之问题readme

标签:安装路径   pack   str   warning   lang   工具   timeout   data   ==   

原文地址:https://www.cnblogs.com/sxco/p/13936377.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!