<?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: Installing python packages in JMP 19 in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911272#M107058</link>
    <description>&lt;P&gt;JMP/Python can be found in&amp;nbsp;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;C:\Users\__username___\AppData\Roaming\JMP\JMP\Python\Python313&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 04 Nov 2025 17:18:19 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2025-11-04T17:18:19Z</dc:date>
    <item>
      <title>Installing python packages in JMP 19</title>
      <link>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911212#M107047</link>
      <description>&lt;P&gt;I was following the instructions in the online help to install python packages (pandas, numpy, ...) that I need for my scripts, but I am having trouble.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Feli_0-1762265297238.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/86343i444B24853114F557/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Feli_0-1762265297238.png" alt="Feli_0-1762265297238.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;When I run&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
Python Install Packages( "pandas" );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;(I needed to change to "" for it to work), I'm getting the error:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;import jmputils&lt;BR /&gt;jmputils.jpip('install', 'pandas')&lt;BR /&gt;/*:&lt;BR /&gt;ERROR: Can not perform a '--user' install. User site-packages are disabled for this Python.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My guess is that the issue is that I would need admin rights to write to the windows folder where JMP sits, but I can't find anything in the help on how to solve this issue.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Nov 2025 14:12:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911212#M107047</guid>
      <dc:creator>Feli</dc:creator>
      <dc:date>2025-11-04T14:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: Installing python packages in JMP 19</title>
      <link>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911272#M107058</link>
      <description>&lt;P&gt;JMP/Python can be found in&amp;nbsp;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;C:\Users\__username___\AppData\Roaming\JMP\JMP\Python\Python313&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Nov 2025 17:18:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911272#M107058</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-11-04T17:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: Installing python packages in JMP 19</title>
      <link>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911280#M107063</link>
      <description>&lt;P&gt;Have you tried installing from Python Script Editor?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;import jmp

from jmputils import jpip
# update to latest version of pip and setuptools then install numpy &amp;amp; pandas
jpip('install', 'pandas')
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 04 Nov 2025 18:37:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911280#M107063</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-11-04T18:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: Installing python packages in JMP 19</title>
      <link>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911288#M107068</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;This python script updates jpip and installs pandas.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;import jmputils
jmputils.jpip('install --upgrade', 'pip setuptools')
jmputils.jpip('install', 'pandas')&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 04 Nov 2025 20:33:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911288#M107068</guid>
      <dc:creator>Mark_Zwald</dc:creator>
      <dc:date>2025-11-04T20:33:17Z</dc:date>
    </item>
    <item>
      <title>Re: Installing python packages in JMP 19</title>
      <link>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911377#M107078</link>
      <description>&lt;P&gt;That was my first try, but gives the same error:&lt;BR /&gt;&lt;BR /&gt;ERROR: Can not perform a '--user' install. User site-packages are disabled for this Python.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2025 05:48:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911377#M107078</guid>
      <dc:creator>Feli</dc:creator>
      <dc:date>2025-11-05T05:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: Installing python packages in JMP 19</title>
      <link>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911387#M107079</link>
      <description>&lt;P&gt;Some sort of issue related to this seems to be known, but not really sure if the "solution" is helpful (close and re-open JMP),&amp;nbsp;&lt;A href="https://www.jmp.com/support/help/en/19.0/#page/jmp/avoiding-errors-with-previously-installed-packages.shtml#" target="_blank" rel="noopener"&gt; Scripting Guide &amp;gt; Python &amp;gt; Install a Python Package &amp;gt; Avoiding Errors with Previously Installed Packages&lt;/A&gt;&amp;nbsp;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Last option that comes to my mind is to use command line with&amp;nbsp;&lt;SPAN class="JSLOperatorName"&gt;Python Create JPIP CMD&lt;/SPAN&gt;(); or&amp;nbsp;jmputils.create_jpip,&lt;A href="https://www.jmp.com/support/help/en/19.0/#page/jmp/install-python-packages-using-jsl.shtml?os=win&amp;amp;source=application#ww346352" target="_blank" rel="noopener"&gt; Scripting Guide &amp;gt; Python &amp;gt; JSL-to-Python Interfaces &amp;gt; Install Python Packages using JSL&lt;/A&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/7172"&gt;@Paul_Nelson&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2025 07:17:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911387#M107079</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-11-05T07:17:45Z</dc:date>
    </item>
    <item>
      <title>Re: Installing python packages in JMP 19</title>
      <link>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911433#M107084</link>
      <description>&lt;P&gt;Your first suggestions seems to match what might be happening to me: pandas and numpy have been installed before on my JMP 18 installation on the same system. Maybe that is what is clashing now.&lt;BR /&gt;I think I will have to open a support case with JMP to get to the botton of this.&lt;/P&gt;
&lt;P&gt;Thanks for all your help!&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2025 12:21:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911433#M107084</guid>
      <dc:creator>Feli</dc:creator>
      <dc:date>2025-11-05T12:21:04Z</dc:date>
    </item>
    <item>
      <title>Re: Installing python packages in JMP 19</title>
      <link>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911442#M107085</link>
      <description>&lt;P&gt;There should be no conflict between JMP18's Python and JMP 19 Python site-packages. &amp;nbsp;Python itself creates a Python versioned subdirectory. &amp;nbsp;C:\Users\&amp;lt;User&amp;gt;\AppData\Roaming\JMP\JMP\Python\Python313 for JMP 19, &amp;nbsp;...\Python311 for JMP 18.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2025 13:34:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911442#M107085</guid>
      <dc:creator>Paul_Nelson</dc:creator>
      <dc:date>2025-11-05T13:34:18Z</dc:date>
    </item>
    <item>
      <title>Re: Installing python packages in JMP 19</title>
      <link>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911535#M107097</link>
      <description>&lt;P&gt;Yes, the JSL should use double quotes for the string instead of the single quotes. &amp;nbsp;Not sure how that got past our automated tests.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2025 18:39:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911535#M107097</guid>
      <dc:creator>Paul_Nelson</dc:creator>
      <dc:date>2025-11-05T18:39:33Z</dc:date>
    </item>
    <item>
      <title>Re: Installing python packages in JMP 19</title>
      <link>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911709#M107111</link>
      <description>&lt;P&gt;Then you perhaps should change it in the online help ;)&lt;/img&gt; I was a bit stumped when a simple copy+paste threw errors until I changed the quotes.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 11:34:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911709#M107111</guid>
      <dc:creator>Feli</dc:creator>
      <dc:date>2025-11-06T11:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: Installing python packages in JMP 19</title>
      <link>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911721#M107115</link>
      <description>&lt;P&gt;That could be a hint. I don't have such folders in my User folder, but it seems that such a Python folder is rather in my C:\Programs\JMP\... .&amp;nbsp; Since I have no write rights into this folder, that might cause this error. What I am not sure about is why a) this worked for JMP 18 before (where I could initialize pandas and co) and the folders are the same (no User folder, Python sitting in the programs folder) and b) why it was installed there.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 13:20:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911721#M107115</guid>
      <dc:creator>Feli</dc:creator>
      <dc:date>2025-11-06T13:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: Installing python packages in JMP 19</title>
      <link>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911726#M107116</link>
      <description>&lt;P&gt;You shouldn't need Admin rights. &amp;nbsp;The folder JMP tries to create is within your user roaming profile directory. &amp;nbsp;JMP itself tries write content into those folders, not just the Python site-packages directory. &amp;nbsp;If you don't have permissions, you will have more issues than just Python support. &amp;nbsp;Talk to your network admins on permissions and make sure they did not set a group policy turning off Python support. &amp;nbsp;JMP provides such a group policy setting..&lt;/P&gt;
&lt;P&gt;Top of JMP hierarchy of folders&lt;/P&gt;
&lt;P&gt;C:\Users\&amp;lt;userid&amp;gt;\AppData\Roaming\JMP&lt;/P&gt;
&lt;P&gt;Top of Python hierarchy:&lt;/P&gt;
&lt;P&gt;C:\Users\&amp;lt;userid&amp;gt;\AppData\Roaming\JMP\JMP\Python\&lt;/P&gt;
&lt;P&gt;With sub-folder based on Python version&amp;nbsp;&lt;/P&gt;
&lt;P&gt;C:\Users\panels\AppData\Roaming\JMP\JMP\Python\Python313 &amp;nbsp; &amp;nbsp;for JMP 19&lt;/P&gt;
&lt;P&gt;C:\Users\panels\AppData\Roaming\JMP\JMP\Python\Python311 &amp;nbsp; &amp;nbsp;for JMP 18&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 14:51:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911726#M107116</guid>
      <dc:creator>Paul_Nelson</dc:creator>
      <dc:date>2025-11-06T14:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: Installing python packages in JMP 19</title>
      <link>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911727#M107117</link>
      <description>&lt;P&gt;Was this online support or the scripting index or both? &amp;nbsp;It is something that needs to be fixed in the documentation. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 14:52:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/911727#M107117</guid>
      <dc:creator>Paul_Nelson</dc:creator>
      <dc:date>2025-11-06T14:52:33Z</dc:date>
    </item>
    <item>
      <title>Re: Installing python packages in JMP 19</title>
      <link>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/912809#M107256</link>
      <description>&lt;P&gt;Only in the online support. I didn' t look in the scripting index.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Nov 2025 13:26:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/912809#M107256</guid>
      <dc:creator>Feli</dc:creator>
      <dc:date>2025-11-12T13:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: Installing python packages in JMP 19</title>
      <link>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/912810#M107257</link>
      <description>&lt;P&gt;Perhaps my JMP 19 is getting confused since I need to install JMP using admin rights (and a temporary admin account). Since my local user doesn't have admin rights, maybe it now thinks that the admin user is my local user?&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;But I'm still not sure why everything was working perfectly fine in JMP 18 with exactly the same constellation?&lt;/P&gt;</description>
      <pubDate>Wed, 12 Nov 2025 13:31:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/912810#M107257</guid>
      <dc:creator>Feli</dc:creator>
      <dc:date>2025-11-12T13:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: Installing python packages in JMP 19</title>
      <link>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/912877#M107268</link>
      <description>&lt;P&gt;Install as admin should be fine, but don't run JMP as admin especially first launch. &amp;nbsp;On launch of 19, jmp tries to build the site-packages directory if it does not already exist by unpacking the embedded site-packages.zip file to the correct location.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Nov 2025 17:54:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/912877#M107268</guid>
      <dc:creator>Paul_Nelson</dc:creator>
      <dc:date>2025-11-12T17:54:10Z</dc:date>
    </item>
    <item>
      <title>Re: Installing python packages in JMP 19</title>
      <link>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/923509#M108180</link>
      <description>&lt;P&gt;Hi Feli. If you do not see the AppData folder, make sure it is not "hidden". For Windows, in File Explorer, go to the View menu, then Show. There is an option called "Hidden items", it is not checked by default. Check this and then you should see the AppData folder and subfolders. Common issue for our JMP users.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.microsoft.com/en-us/windows/file-explorer-in-windows-ef370130-1cca-9dc5-e0df-2f7416fe1cb1#:~:text=Open%20File%20Explorer%20from%20the%20taskbar.%20Select,items%20to%20view%20hidden%20files%20and%20folders" target="_blank"&gt;https://support.microsoft.com/en-us/windows/file-explorer-in-windows-ef370130-1cca-9dc5-e0df-2f7416fe1cb1#:~:text=Open%20File%20Explorer%20from%20the%20taskbar.%20Select,items%20to%20view%20hidden%20files%20and%20folders&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Open&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG class="ocpLegacyBold"&gt;File Explorer&amp;nbsp;&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;from the taskbar.&amp;nbsp;Select&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG class="ocpUI"&gt;View&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;&amp;gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG class="ocpUI"&gt;Show,&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;then select&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG class="ocpLegacyBold"&gt;Hidden items&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;to view hidden files and folders.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jan 2026 15:46:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/923509#M108180</guid>
      <dc:creator>Vball247</dc:creator>
      <dc:date>2026-01-12T15:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: Installing python packages in JMP 19</title>
      <link>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/931071#M108788</link>
      <description>&lt;P&gt;The final solution in the end was that somewhere in my System environment variables, the&amp;nbsp;PYTHONNOUSERSITE was set to 1 (probably from an earlier python installation). Setting this to 0 fixed the issue&lt;/P&gt;</description>
      <pubDate>Mon, 16 Feb 2026 08:37:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Installing-python-packages-in-JMP-19/m-p/931071#M108788</guid>
      <dc:creator>Feli</dc:creator>
      <dc:date>2026-02-16T08:37:16Z</dc:date>
    </item>
  </channel>
</rss>

