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: docs/content/install.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ Trimesh has a lot of soft-required upstream packages, and we try to make sure th
48
48
|`networkx`| Pure Python graph library that's reasonably fast and has a nice API. `scipy.sparse.csgraph` is way faster in most cases but is hard to understand and doesn't implement as many algorithms. |`graph-tool`, `scipy.sparse.csgraph`|`easy`|
49
49
|`shapely`| Bindings to `GEOS` for 2D spatial stuff: "set-theoretic analysis and manipulation of planar features" which lets you offset, union, and query polygons. |`clipper`|`easy`|
50
50
|`rtree`| Query ND rectangles with a spatial tree for a "broad phase" intersection. Used in polygon generation ("given N closed curves which curve contains the other curve?") and as the broad-phase for the built-in-numpy slow ray query engine. |`fcl` maybe? |`easy`|
51
-
|`requests`| Do network queries in `trimesh.exchange.load_remote`, will *only* make network requests when asked ||`easy`|
51
+
|`httpx`| Do network queries in `trimesh.exchange.load_remote`, will *only* make network requests when asked |`requests`, `aiohttp`|`easy`|
|`xxhash`| Quickly hash arrays, used for our cache checking ||`easy`|
54
54
|`chardet`| When we fail to decode text as UTF-8 we then check with chardet which guesses an encoding, letting us load files even with weird encodings. ||`easy`|
0 commit comments