Kaynağa Gözat

Update Python version in README examples

Valentin Niess 5 yıl önce
ebeveyn
işleme
3f6ed9e6b2
1 değiştirilmiş dosya ile 5 ekleme ve 5 silme
  1. 5 5
      README.md

+ 5 - 5
README.md

@@ -15,10 +15,10 @@ single file and changing its mode to executable, e.g.  as:
 
 
 ```sh
 ```sh
 wget https://github.com/niess/python-appimage/releases/download/\
 wget https://github.com/niess/python-appimage/releases/download/\
-python3.8/python3.8.3-cp38-cp38-manylinux1_x86_64.AppImage
-chmod +x python3.8.3-cp38-cp38-manylinux1_x86_64.AppImage
+python3.8/python3.8.5-cp38-cp38-manylinux1_x86_64.AppImage
+chmod +x python3.8.5-cp38-cp38-manylinux1_x86_64.AppImage
 
 
-./python3.8.3-cp38-cp38-manylinux1_x86_64.AppImage
+./python3.8.5-cp38-cp38-manylinux1_x86_64.AppImage
 ```
 ```
 
 
 This should start a Python 3.8 interactive session on _almost_ any Linux
 This should start a Python 3.8 interactive session on _almost_ any Linux
@@ -30,9 +30,9 @@ its standard library.  However, if you plan to install extra packages we
 recommend extracting the AppImage, e.g. as:
 recommend extracting the AppImage, e.g. as:
 
 
 ```sh
 ```sh
-./python3.8.3-cp38-cp38-manylinux1_x86_64.AppImage --appimage-extract
+./python3.8.5-cp38-cp38-manylinux1_x86_64.AppImage --appimage-extract
 mv squashfs-root python3.8
 mv squashfs-root python3.8
-rm -f python3.8.3-cp38-cp38-manylinux1_x86_64.AppImage
+rm -f python3.8.5-cp38-cp38-manylinux1_x86_64.AppImage
 
 
 export PATH="$(pwd)/python3.8/usr/bin:$PATH"
 export PATH="$(pwd)/python3.8/usr/bin:$PATH"
 ```
 ```