You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
519 B
20 lines
519 B
1 year ago
|
# OSC-TO_SCRIPT
|
||
|
## GETTING STARTED
|
||
|
- Create directory for project to live in
|
||
|
- Drop Batch Files to execute into the project directory
|
||
|
- Navigate to this folder in terminal/command prompt
|
||
|
- Run the following commands
|
||
|
> \<PATH TO PYTHON>/python.exe -m venv venv
|
||
|
>
|
||
|
> \<PATH TO PROJECT>/venv/Scripts/activate.bat
|
||
|
>
|
||
|
> pip install python-osc
|
||
|
|
||
|
To run the server:
|
||
|
|
||
|
> "\<PATH TO PROJECT>/venv/Scripts/python.exe" "\<PATH TO PROJECT>/server.py"
|
||
|
|
||
|
OR
|
||
|
|
||
|
> "\<PATH TO PROJECT>/venv/Scripts/pythonw.exe" "\<PATH TO PROJECT>/server.py"
|