mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2025-02-24 19:37:16 +00:00
[89] Merge remote-tracking branch 'chazlarson/nightly-1' into nightly
This commit is contained in:
commit
f19b9304a2
3 changed files with 5 additions and 5 deletions
|
@ -8,7 +8,7 @@ This article will walk you through getting Plex-Meta-Manager [PMM] set up and ru
|
|||
4. Setting up a metadata file and creating a couple sample collections.
|
||||
|
||||
The specific steps you will be taking:
|
||||
1. Verify that Python 3.7 or better is installed and install it if not
|
||||
1. Verify that Python 3.8 or better is installed and install it if not
|
||||
2. Verify that the Git tools are installed and install them if not
|
||||
3. Use `git` to retrieve the code
|
||||
4. Install requirements [extra bits of code required for PMM]
|
||||
|
@ -79,7 +79,7 @@ First let's check if it's installed already [type this into your terminal]:
|
|||
python3 --version
|
||||
```
|
||||
|
||||
If this doesn't return `3.7.0` or higher, you'll need to get Python 3 installed.
|
||||
If this doesn't return `3.8.0` or higher, you'll need to get Python 3 installed.
|
||||
|
||||
````{tab} Linux
|
||||
Describing a python install for any arbitrary linux is out of scope here, but if you're using Ubuntu, [this](https://techviewleo.com/how-to-install-python-on-ubuntu-linux/) might be useful.
|
||||
|
|
|
@ -30,7 +30,7 @@ If you are using unRAID, Kubernetes, QNAP, or Synology refer to the following ba
|
|||
|
||||
## Local Install Overview
|
||||
|
||||
Plex Meta Manager is compatible with Python 3.7 through 3.11. Later versions may function but are untested.
|
||||
Plex Meta Manager is compatible with Python 3.8 through 3.11. Later versions may function but are untested.
|
||||
|
||||
These are high-level steps which assume the user has knowledge of python and pip, and the general ability to troubleshoot issues. For a detailed step-by-step walkthrough, refer to the [Local Walkthrough](guides/local) guide.
|
||||
|
||||
|
|
|
@ -4,8 +4,8 @@ from concurrent.futures import ProcessPoolExecutor
|
|||
from datetime import datetime
|
||||
from modules.logs import MyLogger
|
||||
|
||||
if sys.version_info[0] != 3 or sys.version_info[1] < 7:
|
||||
print("Version Error: Version: %s.%s.%s incompatible please use Python 3.7+" % (sys.version_info[0], sys.version_info[1], sys.version_info[2]))
|
||||
if sys.version_info[0] != 3 or sys.version_info[1] < 8:
|
||||
print("Version Error: Version: %s.%s.%s incompatible please use Python 3.8+" % (sys.version_info[0], sys.version_info[1], sys.version_info[2]))
|
||||
sys.exit(0)
|
||||
|
||||
try:
|
||||
|
|
Loading…
Add table
Reference in a new issue