-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathInstall_Tips.scd
50 lines (31 loc) · 1.25 KB
/
Install_Tips.scd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Useful Things you might need to do when installing:
// On Windows, when you cannot install quarks, \
// you may need to install the git software from here:
"https://git-scm.com".openOS;
// and reboot before you can use it!
// Install NTMI if you havent yet
Quarks.install("NTMI");
// if you have an older version installed, update it:
Quark("NTMI").update;
// these are the other quarks NTMI needs to have installed:
Quark("NTMI").dependencies.collect(_.name).postln;
// make sure you have them all
Quark("NTMI").dependencies.do(_.install);
// make sure you have the latest versions
Quark("NTMI").dependencies.do(_.update);
// if you want to use networked xflux,
// make sure you have latest HyperDisCo installed
Quark("HyperDisCo").install;
Quark("HyperDisCo").update;
// For using HID devices, such as gamepads,
// on linux, including raspberry Pi,
// you need to give HID devices the proper rights.
### In the Terminal, create a file with rules that enable HID gamepads
### with the nano text editor:
sudo nano /etc/udev/rules.d/99-hid.rules
### put this line in the file:
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", OWNER="root", GROUP="plugdev", MODE="0660"
### and save with control-o, cntrol-x
### to make it work immediately, do
sudo udevadm trigger
//