Jamf Pro | Snipe-IT

CrawfordRobson
New Contributor III

 

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 1

mistacabbage
Contributor

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