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
If you use the ``uv`` (`https://docs.astral.sh/uv/ <https://docs.astral.sh/uv/>`_) tool to manage python and your projects, the command is slightly simpler
138
+
139
+
140
+
.. code-block:: sh
141
+
142
+
uv pip install -e .
143
+
144
+
137
145
To build the wheel file
138
146
139
147
.. code-block:: sh
@@ -379,4 +387,4 @@ Compile the Python API using the following command from the ``//py`` directory:
379
387
380
388
If you have a build of PyTorch that uses Pre-CXX11 ABI drop the ``--use-cxx11-abi`` flag
381
389
382
-
If you are building for Jetpack 4.5 add the ``--jetpack-version 5.0`` flag
390
+
If you are building for Jetpack 4.5 add the ``--jetpack-version 5.0`` flag
] #Leaving torchvisions dependency unconstrained so uv can just install something that should work for the torch we have. TV's on PyT makes it hard to put version constrains in
"https://download.pytorch.org/whl/nightly/cu124", # We are going to define the dev enviorment as latest supported CUDA, and allow CI to handle the others, change as needed
105
+
]
106
+
107
+
prerelease = "if-necessary-or-explicit"
108
+
index-strategy = "unsafe-best-match"
109
+
83
110
[tool.ruff]
84
111
# NOTE: Synchoronize the ignores with .flake8
85
112
lint.ignore = [
@@ -144,7 +171,6 @@ lint.select = [
144
171
145
172
# Allow unused variables when underscore-prefixed.
0 commit comments