You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,27 @@ Then run this command to build all the wheels.
37
37
38
38
All the resulting wheels are in `dist`, which can be installed using `pip`.
39
39
40
+
41
+
Development environment
42
+
-----------------------
43
+
44
+
To install all robotpy packages in [editable mode](https://packaging.python.org/en/latest/guides/distributing-packages-using-setuptools/#working-in-development-mode)
45
+
run this:
46
+
47
+
./rdev.sh develop
48
+
49
+
For pure python development, you can just edit the files in this repository in-place, and
50
+
changes will take effect immediately.
51
+
52
+
If you are changing C++/wrapper code, you will need to rebuild the package that you are
53
+
modifying. You can either run the develop command above (which rebuilds everything) or
54
+
rebuild an individual package:
55
+
56
+
./rdev.sh develop NAME
57
+
58
+
It can be a slow process,see the [robotpy-build documentation](https://robotpy-build.readthedocs.io/en/stable/tips.html)
0 commit comments