cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP 19 is here! See the new features at jmp.com/new.
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.
Choose Language Hide Translation Bar
BHKReddy
Level II

Python Access Issue while installing Packages

Hello JMP Community,

 

Recently started using JMP and tried to access the Python and while installing the python packages, I am getting error like below.

Any support in resolving the below error is much appreciated. Refer below image along with code used and error.

 

Thank you

 

 

image.png

 

 

10 REPLIES 10

Re: Python Access Issue while installing Packages

Try installing the package via Windows Command Line using trusted-host. 

 

"C:\Program Files\JMP\<JMPPRO|JMP>\<version#>\jmp_python.exe" -m pip install --trusted-host=pypi.org --trusted-host=files.pythonhosted.org --user <module name>

 

E.G., installing numpy within JMP Pro. "C:\Program Files\JMP\JMPPRO\18\jmp_python.exe" -m pip install --trusted-host=pypi.org --trusted-host=files.pythonhosted.org --user numpy

 

Caution: note that this is insecure and can lead to other issues. The error occurs when attempting to access a package repository behind corporate firewalls. Please evaluate with your IT department before considering this as a solution.

Recommended Articles