Nicolas Rojas commited on
Commit
3765747
1 Parent(s): e0f1895

Remove unsupported python version 3.9 from README (#1364) [skip ci]

Browse files
Files changed (1) hide show
  1. README.md +6 -6
README.md CHANGED
@@ -97,7 +97,7 @@ Features:
97
 
98
  Get started with Axolotl in just a few steps! This quickstart guide will walk you through setting up and running a basic fine-tuning task.
99
 
100
- **Requirements**: Python >=3.9 and Pytorch >=2.1.1.
101
 
102
  ### For developers
103
  ```bash
@@ -179,7 +179,7 @@ docker run --privileged --gpus '"all"' --shm-size 10g --rm -it --name axolotl --
179
  </details>
180
 
181
  #### Conda/Pip venv
182
- 1. Install python >=**3.9**
183
 
184
  2. Install pytorch stable https://pytorch.org/get-started/locally/
185
 
@@ -212,11 +212,11 @@ For cloud GPU providers that support docker images, use [`winglian/axolotl-cloud
212
  1. Install python
213
  ```bash
214
  sudo apt update
215
- sudo apt install -y python3.9
216
 
217
- sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.9 1
218
- sudo update-alternatives --config python # pick 3.9 if given option
219
- python -V # should be 3.9
220
 
221
  ```
222
 
 
97
 
98
  Get started with Axolotl in just a few steps! This quickstart guide will walk you through setting up and running a basic fine-tuning task.
99
 
100
+ **Requirements**: Python >=3.10 and Pytorch >=2.1.1.
101
 
102
  ### For developers
103
  ```bash
 
179
  </details>
180
 
181
  #### Conda/Pip venv
182
+ 1. Install python >=**3.10**
183
 
184
  2. Install pytorch stable https://pytorch.org/get-started/locally/
185
 
 
212
  1. Install python
213
  ```bash
214
  sudo apt update
215
+ sudo apt install -y python3.10
216
 
217
+ sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.10 1
218
+ sudo update-alternatives --config python # pick 3.10 if given option
219
+ python -V # should be 3.10
220
 
221
  ```
222