Resource icon

OBS_OSC.py 0.1

DangerOpps

New Member
Does the script have any dependencies I need to install? I'm trying to send the strings to the port specified in the script but I am not having any luck.
 

ghostman90215

New Member
The easiest way to know is to look at the *.py file.

for anything listed in the file that comes after the keyword "import", you have to run this on the command line:

Code:
pip3 install name-of-the-dependency

The installer will likely output something that says you probably want to add the path to the location where python3 is installing libraries.

You can find instructions for how to append that to your $PATH variable all of the Internet for your Operating System.
 
Top