Manually install Python
This commit is contained in:
parent
5e0b4a708f
commit
61735d5edf
|
@ -15,8 +15,14 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up Python
|
- name: Install Python
|
||||||
uses: actions/setup-python@v5
|
run: |
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install python3 python3-venv python3-pip -y
|
||||||
|
|
||||||
|
- name: Check Python Version
|
||||||
|
run: |
|
||||||
|
python3 --version
|
||||||
|
|
||||||
- name: Create virtual environment
|
- name: Create virtual environment
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in New Issue