Skip to main content
Question

Jamf Pro | Snipe-IT

  • January 26, 2022
  • 1 reply
  • 106 views

CrawfordRobson
Forum|alt.badge.img+6

 

I'm trying to setup the Jamf Pro | Snipe-IT to pull inventory information using Jamf2Snipe https://github.com/ParadoxGuitarist/jamf2snipe/

I have a Docker image running with Snipe-IT but when I run Snipe2Jamf dryrun I get the follow error;

python jamf2snipe --dryrun
Traceback (most recent call last):
File "jamf2snipe", line 50, in <module>
import requests
ImportError: No module named requests

Anyone got any ideas what the issue could be?

 

 

 

 

1 reply

Forum|alt.badge.img+7
  • Contributor
  • January 26, 2022

You don't have the Python module "requests" installed.  So you need to install that before running the script.  Try installing the Apple Developer Command Line Tools first to get Python 3.  Then see if this command works.

python3 -m pip install requests