Package: nvpy / 2.0.0-2

0004-Set-correct-nvpy-path-in-launch-script.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
From: Stefan van der Walt <stefanv@berkeley.edu>
Date: Mon, 23 Sep 2019 22:38:09 -0700
Subject: Set correct nvpy path in launch script

---
 start-nvpy.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/start-nvpy.py b/start-nvpy.py
index 598819e..d7d66b4 100644
--- a/start-nvpy.py
+++ b/start-nvpy.py
@@ -1,4 +1,7 @@
 #!/usr/bin/env python3
 
+import sys
+sys.path.insert(0, "/usr/share/nvpy")
+
 import nvpy.nvpy
 nvpy.nvpy.main()