Skip to content

Commit

Permalink
feat: add setup command to Python installation script
Browse files Browse the repository at this point in the history
- Introduced a new "setup" command in the Python installation script to facilitate the setup of pyenv.
- This enhancement improves the usability of the script by allowing users to easily configure their Python environment.
  • Loading branch information
Marvin Zhang committed Dec 30, 2024
1 parent ef499a0 commit d4d7714
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docker/base-image/install/python/python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,9 @@ version="${2:-3.12.8}"
requirements="${3:-}"

case $command in
"setup")
setup_pyenv
;;
"install")
setup_pyenv
# Check if version is already installed
Expand Down

0 comments on commit d4d7714

Please sign in to comment.