Skip to content

Commit

Permalink
update resolve addon doc - custom python 3.x interpreter
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronmack committed Jan 18, 2024
1 parent 40c1b95 commit 74819f3
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion website/docs/addon_resolve_admin.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,28 @@ As it is shown in below picture you have to go to Fusion Tab and then in Fusion
![Create menu](assets/resolve_fusion_script_settings.png)

</div>
</div>
</div>

### Custom DaVinci Resolve Python 3.x interpreter

On the frontend page of the website, in the **Studio Settings** -> **Applications** -> **Resolve** section, you can change the environment variables to configure a custom python interpreter.

e.g. An example of a possible configuration, or use hard-coded and write it in the environment configuration.

```bash
{
"RESOLVE_UTILITY_SCRIPTS_SOURCE_DIR": [],
"RESOLVE_PYTHON3_HOME": {
"windows": "{CUSTOM_RESOLVE_PYTHON_HOME}",
"darwin": "{CUSTOM_RESOLVE_PYTHON_HOME}",
"linux": "{CUSTOM_RESOLVE_PYTHON_HOME}"
}
}
```

Set your python 3.x interpreter directory to the environment variable `CUSTOM_RESOLVE_PYTHON_HOME`.

Next, you'll need to use your custom python interpreter to install some of the necessary packages

1. `python -m pip install PySide2`
2. `python -m pip install OpenTimelineIO`

0 comments on commit 74819f3

Please sign in to comment.