<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Flare 2026.1 (macOS) – Need confirmation of Python script search paths in Flame Forum</title>
    <link>https://forums.autodesk.com/t5/flame-forum/flare-2026-1-macos-need-confirmation-of-python-script-search/m-p/13868154#M8484</link>
    <description>&lt;P&gt;There shouldn't be any difference other than some attributes/functions not being available in Flare when the associated feature is not available inside the application.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You should contact the support team so they can investigate the permission issue with you.&lt;/P&gt;</description>
    <pubDate>Mon, 27 Oct 2025 11:40:56 GMT</pubDate>
    <dc:creator>fred.warren</dc:creator>
    <dc:date>2025-10-27T11:40:56Z</dc:date>
    <item>
      <title>Flare 2026.1 (macOS) – Need confirmation of Python script search paths</title>
      <link>https://forums.autodesk.com/t5/flame-forum/flare-2026-1-macos-need-confirmation-of-python-script-search/m-p/13865341#M8481</link>
      <description>&lt;P&gt;Hi Autodesk Team,&lt;/P&gt;&lt;P&gt;I’m setting up Python tools for Flare 2026.1 on macOS and need to confirm the official script-loading locations.&lt;BR /&gt;The online documentation lists:&lt;/P&gt;&lt;P&gt;/opt/Autodesk/shared/python/&lt;/P&gt;&lt;P&gt;~/Autodesk/flame_2026/scripts/python/&lt;/P&gt;&lt;P&gt;but it doesn’t clearly state whether Flare on macOS loads from both of these or only the user path.&lt;/P&gt;&lt;P&gt;Could you please confirm:&lt;/P&gt;&lt;P&gt;The exact directories Flare 2026.1 scans for Python scripts on macOS.&lt;/P&gt;&lt;P&gt;Whether /opt/Autodesk/shared/python/ is supported or restricted by permissions.&lt;/P&gt;&lt;P&gt;Where this is documented in the Flame Family Python API Guide.&lt;/P&gt;&lt;P&gt;Thanks very much,&lt;BR /&gt;Marios&lt;/P&gt;</description>
      <pubDate>Fri, 24 Oct 2025 12:21:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flame-forum/flare-2026-1-macos-need-confirmation-of-python-script-search/m-p/13865341#M8481</guid>
      <dc:creator>artfulx</dc:creator>
      <dc:date>2025-10-24T12:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: Flare 2026.1 (macOS) – Need confirmation of Python script search paths</title>
      <link>https://forums.autodesk.com/t5/flame-forum/flare-2026-1-macos-need-confirmation-of-python-script-search/m-p/13865716#M8482</link>
      <description>&lt;P&gt;Hello Marios,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am not sure what is the online documentation you are referring to, but in the latest documentation (&lt;A href="https://help.autodesk.com/view/FLAME/2026/ENU/?guid=Flame_API_Python_Hooks_Reference_html" target="_blank"&gt;https://help.autodesk.com/view/FLAME/2026/ENU/?guid=Flame_API_Python_Hooks_Reference_html&lt;/A&gt;) the following is listed:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;H3 id="user-project-and-application-and-shared-locations"&gt;User, Project, and Application, and Shared locations&lt;/H3&gt;
&lt;P&gt;You can assign python hooks to a given user or project. Simply add the Python file with the custom hooks in one of the following locations:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;A specific user:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Linux: &lt;CODE&gt;/home/&amp;lt;user name&amp;gt;/flame/python&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;macOS: &lt;CODE&gt;/Users/&amp;lt;user name&amp;gt;/Library/Preferences/Autodesk/flame/python&lt;/CODE&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;A specific project: &lt;CODE&gt;/opt/Autodesk/project/&amp;lt;project name&amp;gt;/python&lt;/CODE&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;In the future, any python files located there will be copied with the project when the project is converted to a new version.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;A specific application version: &lt;CODE&gt;/opt/Autodesk/&amp;lt;PRODUCT&amp;gt;_&amp;lt;VERSION&amp;gt;/python&lt;/CODE&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;A global, opened and shared location: &lt;CODE&gt;/opt/Autodesk/shared/python&lt;/CODE&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Will be used by all users and projects in all versions.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;H3 id="other-locations"&gt;Other locations&lt;/H3&gt;
&lt;P&gt;It is possible to make Flame scan a directory other than &lt;CODE&gt;/opt/Autodesk/&amp;lt;PRODUCT&amp;gt;_&amp;lt;VERSION&amp;gt;/python&lt;/CODE&gt; for &lt;CODE&gt;.py&lt;/CODE&gt; files by setting the &lt;CODE&gt;DL_PYTHON_HOOK_PATH&lt;/CODE&gt; environment variable to the desired path.&lt;/P&gt;
&lt;P&gt;Multiple paths can also be used by separating them by &lt;CODE&gt;:&lt;/CODE&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Oct 2025 16:23:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flame-forum/flare-2026-1-macos-need-confirmation-of-python-script-search/m-p/13865716#M8482</guid>
      <dc:creator>fred.warren</dc:creator>
      <dc:date>2025-10-24T16:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: Flare 2026.1 (macOS) – Need confirmation of Python script search paths</title>
      <link>https://forums.autodesk.com/t5/flame-forum/flare-2026-1-macos-need-confirmation-of-python-script-search/m-p/13866784#M8483</link>
      <description>&lt;P&gt;Hello Fred&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you confirm that using python in flame and flare in Macos is exactly the same, as I seem to be getting permission issues in Flare on macOS ? are there no limitations in flare?&lt;/P&gt;</description>
      <pubDate>Sat, 25 Oct 2025 19:57:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flame-forum/flare-2026-1-macos-need-confirmation-of-python-script-search/m-p/13866784#M8483</guid>
      <dc:creator>artfulx</dc:creator>
      <dc:date>2025-10-25T19:57:16Z</dc:date>
    </item>
    <item>
      <title>Re: Flare 2026.1 (macOS) – Need confirmation of Python script search paths</title>
      <link>https://forums.autodesk.com/t5/flame-forum/flare-2026-1-macos-need-confirmation-of-python-script-search/m-p/13868154#M8484</link>
      <description>&lt;P&gt;There shouldn't be any difference other than some attributes/functions not being available in Flare when the associated feature is not available inside the application.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You should contact the support team so they can investigate the permission issue with you.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Oct 2025 11:40:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flame-forum/flare-2026-1-macos-need-confirmation-of-python-script-search/m-p/13868154#M8484</guid>
      <dc:creator>fred.warren</dc:creator>
      <dc:date>2025-10-27T11:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: Flare 2026.1 (macOS) – Need confirmation of Python script search paths</title>
      <link>https://forums.autodesk.com/t5/flame-forum/flare-2026-1-macos-need-confirmation-of-python-script-search/m-p/13917796#M8518</link>
      <description>&lt;P&gt;Hi Marios,&lt;/P&gt;&lt;P&gt;On macOS, Flare 2026.1 loads Python scripts from both the user directory and the shared system directory. Here are the paths Flare scans:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;User scripts directory (recommended)&lt;/STRONG&gt;&lt;BR /&gt;Home folder → Autodesk → flame_2026 → scripts → python&lt;BR /&gt;This is the main location for custom tools and third-party scripts. Fully writable and automatically scanned on launch.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Shared system directory&lt;/STRONG&gt;&lt;BR /&gt;opt → Autodesk → shared → python&lt;BR /&gt;Flare on macOS does read this location, but you need admin rights to place files there. The directory is intended for studio-level shared tools rather than everyday user scripts. Flare has read access by default, but write access depends on your system permissions.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Documentation reference&lt;/STRONG&gt;&lt;BR /&gt;These locations are described in the Flame Family Python API Guide under the section about installing Python scripts and modules for Linux and macOS.&lt;BR /&gt;Author: john wick&lt;BR /&gt;&lt;A href="https://thehousechoresapk.com" target="_blank" rel="noopener"&gt;&amp;nbsp;&lt;FONT color="#FFFFFF"&gt;&lt;SPAN&gt;house chores game download&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Nov 2025 13:18:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flame-forum/flare-2026-1-macos-need-confirmation-of-python-script-search/m-p/13917796#M8518</guid>
      <dc:creator>johnwick954999</dc:creator>
      <dc:date>2025-11-25T13:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: Flare 2026.1 (macOS) – Need confirmation of Python script search paths</title>
      <link>https://forums.autodesk.com/t5/flame-forum/flare-2026-1-macos-need-confirmation-of-python-script-search/m-p/13918402#M8521</link>
      <description>&lt;P&gt;thanks for this, are you or is this saying that flare behaves differently?&lt;/P&gt;</description>
      <pubDate>Mon, 24 Nov 2025 20:22:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flame-forum/flare-2026-1-macos-need-confirmation-of-python-script-search/m-p/13918402#M8521</guid>
      <dc:creator>artfulx</dc:creator>
      <dc:date>2025-11-24T20:22:16Z</dc:date>
    </item>
  </channel>
</rss>

