1
0
mirror of https://github.com/ciromattia/kcc synced 2026-05-25 00:42:09 +00:00

add pip install --upgrade pip to README.md

This commit is contained in:
Alex Xu
2026-05-21 21:07:57 -07:00
committed by GitHub
parent 87c6b7143a
commit 6d5db71b5b

View File

@@ -365,6 +365,7 @@ One time setup and running for the first time:
``` ```
python -m venv venv python -m venv venv
venv\Scripts\activate.bat venv\Scripts\activate.bat
pip install --upgrade pip
pip install -r requirements.txt pip install -r requirements.txt
python kcc.py python kcc.py
``` ```
@@ -390,6 +391,7 @@ One time setup and running for the first time:
``` ```
python3 -m venv venv python3 -m venv venv
source venv/bin/activate source venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt pip install -r requirements.txt
python kcc.py python kcc.py
``` ```