@ -18,156 +18,188 @@ This sections aims to answer the most commonly asked questions that users have.
=== ":fontawesome-brands-linux: Linux"
=== ":fontawesome-brands-linux: Linux"
[type this into your terminal]
[type this into your terminal, changing `YOUR_USERNAME`` to your username]
```
cd /Users/mroche/Plex-Meta-Manager
cd /Users/YOUR_USERNAME/Plex-Meta-Manager
git pull
git pull
source pmm-venv/bin/activate
source pmm-venv/bin/activate
python -m pip install -r requirements.txt
python -m pip install -r requirements.txt
```
=== ":fontawesome-brands-apple: macOS"
=== ":fontawesome-brands-apple: macOS"
[type this into your terminal]
[type this into your terminal, changing `YOUR_USERNAME`` to your username]
```
cd /Users/mroche/Plex-Meta-Manager
cd /Users/YOUR_USERNAME/Plex-Meta-Manager
git pull
git pull
source pmm-venv/bin/activate
source pmm-venv/bin/activate
python -m pip install -r requirements.txt
python -m pip install -r requirements.txt
```
=== ":fontawesome-brands-windows: Windows"
=== ":fontawesome-brands-windows: Windows"
[type this into your terminal]
[type this into your terminal, changing `YOUR_USERNAME`` to your username]
```
cd C:\Users\mroche\Plex-Meta-Manager
cd C:\Users\YOUR_USERNAME\Plex-Meta-Manager
git pull
git pull
.\pmm-venv\Scripts\activate
.\pmm-venv\Scripts\activate
python -m pip install -r requirements.txt
python -m pip install -r requirements.txt
```
=== ":fontawesome-brands-docker: Docker"
=== ":fontawesome-brands-docker: Docker"
[type this into your terminal]
[type this into your terminal]
```
docker pull meisnate12/plex-meta-manager
```
docker pull meisnate12/plex-meta-manager:TAG_HERE
replacing TAG_HERE with latest, develop, or nightly [whichever you are currently using]
Then recreate your container via whatever means you used to create it [docker run, docker-compose, etc.].
If you are using Docker on a NAS like Synology or UNRaid, they will provide some means of doing those two things.
??? question "How do I switch to the develop branch?"
??? question "How do I switch to the develop branch?"
=== ":fontawesome-brands-linux: Linux"
=== ":fontawesome-brands-linux: Linux"
[type this into your terminal]
[type this into your terminal, changing `YOUR_USERNAME`` to your username]
```
cd /Users/mroche/Plex-Meta-Manager
cd /Users/YOUR_USERNAME/Plex-Meta-Manager
git checkout develop
git checkout develop
git pull
git pull
source pmm-venv/bin/activate
source pmm-venv/bin/activate
python -m pip install -r requirements.txt
python -m pip install -r requirements.txt
```
=== ":fontawesome-brands-apple: macOS"
=== ":fontawesome-brands-apple: macOS"
[type this into your terminal]
[type this into your terminal, changing `YOUR_USERNAME`` to your username]
```
cd /Users/mroche/Plex-Meta-Manager
cd /Users/YOUR_USERNAME/Plex-Meta-Manager
git checkout develop
git checkout develop
git pull
git pull
source pmm-venv/bin/activate
source pmm-venv/bin/activate
python -m pip install -r requirements.txt
python -m pip install -r requirements.txt
```
=== ":fontawesome-brands-windows: Windows"
=== ":fontawesome-brands-windows: Windows"
[type this into your terminal]
[type this into your terminal, changing `YOUR_USERNAME`` to your username]
```
cd C:\Users\mroche\Plex-Meta-Manager
cd C:\Users\YOUR_USERNAME\Plex-Meta-Manager
git checkout develop
git checkout develop
git pull
git pull
.\pmm-venv\Scripts\activate
.\pmm-venv\Scripts\activate
python -m pip install -r requirements.txt
python -m pip install -r requirements.txt
```
=== ":fontawesome-brands-docker: Docker"
[type this into your terminal]
docker pull meisnate12/plex-meta-manager:develop
Then recreate your container via whatever means you used to create it [docker run, docker-compose, etc.], changing the image in the docker command or the `docker-compose.yml` to `meisnate12/plex-meta-manager:develop`.
If you are using Docker on a NAS like Synology or UNRaid, they will provide some means of doing those two things.
??? question "How do I switch to the nightly branch"
??? question "How do I switch to the nightly branch"
=== ":fontawesome-brands-linux: Linux"
=== ":fontawesome-brands-linux: Linux"
[type this into your terminal]
[type this into your terminal, changing `YOUR_USERNAME`` to your username]
```
cd /Users/mroche/Plex-Meta-Manager
cd /Users/YOUR_USERNAME/Plex-Meta-Manager
git checkout nightly
git checkout nightly
git pull
git pull
source pmm-venv/bin/activate
source pmm-venv/bin/activate
python -m pip install -r requirements.txt
python -m pip install -r requirements.txt
```
=== ":fontawesome-brands-apple: macOS"
=== ":fontawesome-brands-apple: macOS"
[type this into your terminal]
[type this into your terminal, changing `YOUR_USERNAME`` to your username]
```
cd /Users/mroche/Plex-Meta-Manager
cd /Users/YOUR_USERNAME/Plex-Meta-Manager
git checkout nightly
git checkout nightly
git pull
git pull
source pmm-venv/bin/activate
source pmm-venv/bin/activate
python -m pip install -r requirements.txt
python -m pip install -r requirements.txt
```
=== ":fontawesome-brands-windows: Windows"
=== ":fontawesome-brands-windows: Windows"
[type this into your terminal]
[type this into your terminal, changing `YOUR_USERNAME`` to your username]
```
cd C:\Users\mroche\Plex-Meta-Manager
cd C:\Users\YOUR_USERNAME\Plex-Meta-Manager
git checkout nightly
git checkout nightly
git pull
git pull
.\pmm-venv\Scripts\activate
.\pmm-venv\Scripts\activate
python -m pip install -r requirements.txt
python -m pip install -r requirements.txt
```
=== ":fontawesome-brands-docker: Docker"
[type this into your terminal]
docker pull meisnate12/plex-meta-manager:nightly
Then recreate your container via whatever means you used to create it [docker run, docker-compose, etc.], changing the image in the docker command or the `docker-compose.yml` to `meisnate12/plex-meta-manager:nightly`.
If you are using Docker on a NAS like Synology or UNRaid, they will provide some means of doing those two things.
??? question "How do I switch back to the master branch?"
??? question "How do I switch back to the master branch?"
=== ":fontawesome-brands-linux: Linux"
=== ":fontawesome-brands-linux: Linux"
[type this into your terminal]
[type this into your terminal, changing `YOUR_USERNAME`` to your username]
```
cd /Users/mroche/Plex-Meta-Manager
cd /Users/YOUR_USERNAME/Plex-Meta-Manager
git checkout master
git checkout master
git pull
git pull
source pmm-venv/bin/activate
source pmm-venv/bin/activate
python -m pip install -r requirements.txt
python -m pip install -r requirements.txt
```
=== ":fontawesome-brands-apple: macOS"
=== ":fontawesome-brands-apple: macOS"
[type this into your terminal]
[type this into your terminal, changing `YOUR_USERNAME`` to your username]
```
cd /Users/mroche/Plex-Meta-Manager
cd /Users/YOUR_USERNAME/Plex-Meta-Manager
git checkout master
git checkout master
git pull
git pull
source pmm-venv/bin/activate
source pmm-venv/bin/activate
python -m pip install -r requirements.txt
python -m pip install -r requirements.txt
```
=== ":fontawesome-brands-windows: Windows"
=== ":fontawesome-brands-windows: Windows"
[type this into your terminal]
[type this into your terminal, changing `YOUR_USERNAME`` to your username]
```
cd C:\Users\mroche\Plex-Meta-Manager
cd C:\Users\YOUR_USERNAME\Plex-Meta-Manager
git checkout master
git checkout master
git pull
git pull
.\pmm-venv\Scripts\activate
.\pmm-venv\Scripts\activate
python -m pip install -r requirements.txt
python -m pip install -r requirements.txt
```
=== ":fontawesome-brands-docker: Docker"
[type this into your terminal]
docker pull meisnate12/plex-meta-manager:latest
Then recreate your container via whatever means you used to create it [docker run, docker-compose, etc.], changing the image in the docker command or the `docker-compose.yml` to `meisnate12/plex-meta-manager:latest`.
If you are using Docker on a NAS like Synology or UNRaid, they will provide some means of doing those two things.
#### Performance & Scheduling
#### Performance & Scheduling
??? question "Any tips on increasing PMM performance?"
??? question "Any tips on increasing PMM performance?"
Use PMM Caching where possible, this allows PMM to temporarily store commonly-used information so that it can be retreived more efficiently. There are [multipe things](https://metamanager.wiki/en/latest/search.html?q=cache&check_keywords=yes&area=default) that can be cached within PMM.
Use PMM Caching where possible, this allows PMM to temporarily store commonly-used information so that it can be retrieved more efficiently. There are [multipe things](https://metamanager.wiki/en/latest/search.html?q=cache&check_keywords=yes&area=default) that can be cached within PMM.
Run PMM after PLEX Scheduled Tasks, as Plex's API tends to be slower at responding whilst it is performing the tasks. By default, PMM runs at 5AM to avoid the 3-5am window that Plex suggests for Scheduled Tasks.
Run PMM after PLEX Scheduled Tasks, as Plex's API tends to be slower at responding whilst it is performing the tasks. By default, PMM runs at 5AM to avoid the 3-5am window that Plex suggests for Scheduled Tasks.