Skip to content

Quick Start

Alexander Richter edited this page Dec 7, 2024 · 44 revisions

plex_01

Plex Pipeline - Tutorial

00 - Introduction
01 - Quick Start
02 - Add Plugin
03 - New Project

04 - Development Introduction
05 - Development Configuration

FMX 2017 - Talk

Video: Open Source Pipeline Talk

1. packages (download)

DESKTOP APP

  • Python 3
    CHECK if installed correctly: Open console, type "python" and execute

  • PySide
    (needed for arDesktop)

INCLUDED (lib/extern)

2. setup

  1. Download Plex to your pipeline path

download

  • Download ZIP
    or
  • git clone https://github.com/alexanderrichtertd/plex.git plex (using the console with git installed)
  1. Copy the project template folder to your project path

  2. Set your configurations:
    Set software versions, paths and the main project path.

  • data/project/default/project.yml (name, path, resolution, ...)
  • data/project/default/ddc/maya.yml (software version ...)

3. start software

execute software: exe/windows/maya.bat (Maya | Nuke | Houdini | arDesktop)

Tip: Add arDesktop to your OS startup and create shortcuts of the software executable.

4. create project

project template: plex/project

  1. COPY and rename this folder to your project directory
  2. ADD this path to data/project/default/project.yml path

Troubleshooting

"Windows cannot find 'pythonw'" or Maya/Nuke/... doesn't start.

pythonw_error
Make sure that Python is installed correctly. "Add python.exe to Path" has to be checked during the installation.

Alternative: Add "C:\Python27;" to System Properties/Environment Variables/System Variables/Path
envpath_python


Your path "is not recognized as an internal or external command ..."

path_issues

The issue is with having spaces in your path (e.g. "C:\Google Drive\Plex").

Usually quotes ("path") around the path solve this issue. Seems sometimes not be the case. The easiest solution is to move Plex to a location without spaces ... I know it is silly. Will add other solutions when I found them.

Clone this wiki locally