odoo 安装时提示pip需更新,但用老不成功
在pycharm中更新老不成功
pip版本不对,手动改成 如:下载官方脚本文件 https://bootstrap.pypa.io/get-pip.py 把该文件放在 Python\Python37\Scripts 的目录下 并在该目录下运行命令行工具,输入 python get-pip.py
成功了,特此记录
get-pip.py
#!/usr/bin/env python
#
# Hi There!
#
# You may be wondering what this giant blob of binary data here is, you might
# even be worried that we're up to something nefarious (good for you for being
# paranoid!). This is a base85 encoding of a zip file, this zip file contains
# an entire copy of pip (version 22.0.4).
#
# Pip is a thing that installs packages, pip itself is a package that someone
# might want to install, especially if they're looking to run this get-pip.py
# script. Pip has a lot of code to deal with the security of installing
# packages, various edge cases on various platforms, and other such sort of
# "tribal knowledge" that has b
|