Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update cyberpanel.sh - fix install failure with python error 'unexpected keyword argument: "strip_trailing_zero"' #1387

Open
wants to merge 1 commit into
base: stable
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions cyberpanel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1110,6 +1110,13 @@ export LC_CTYPE=en_US.UTF-8
export LC_ALL=en_US.UTF-8
#need to set lang to address some pip module installation issue.

### @micfogas - code added to force updating of python3 package 'packaging' to version 22 or higher to avoid fatal error
###
Debug_Log2 "Force updating pip package 'packaging' to \>\=22...,40"
pip install packaging>=22 --root-user-action=ignore --break-system-packages -U --force-reinstall -I
###
### @micfogas end code addition

Retry_Command "pip install --default-timeout=3600 virtualenv"

Download_Requirement
Expand Down