Skip to content

Commit 69d01c4

Browse files
authored
Remove pip slowness warning when spawning (#4073)
- Slowness was fixed by #4053 ### What ### Checklist * [x] I have read and agree to [Contributor Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and the [Code of Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md) * [x] I've included a screenshot or gif (if applicable) * [x] I have tested [demo.rerun.io](https://demo.rerun.io/pr/4073) (if applicable) * [x] The PR title and labels are set such as to maximize their usefulness for the next release's CHANGELOG - [PR Build Summary](https://build.rerun.io/pr/4073) - [Docs preview](https://rerun.io/preview/7199492ed9a4765beddd326569584f48c385e1ae/docs) <!--DOCS-PREVIEW--> - [Examples preview](https://rerun.io/preview/7199492ed9a4765beddd326569584f48c385e1ae/examples) <!--EXAMPLES-PREVIEW--> - [Recent benchmark results](https://ref.rerun.io/dev/bench/) - [Wasm size tracking](https://ref.rerun.io/dev/sizes/)
1 parent d962b34 commit 69d01c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/re_sdk/src/spawn.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ pub fn spawn(opts: &SpawnOptions) -> Result<(), SpawnError> {
137137
You can install binary releases of the Rerun Viewer:
138138
* Using `cargo`: `cargo binstall rerun-cli` (see https://github.com/cargo-bins/cargo-binstall)
139139
* Via direct download from our release assets: https://github.com/rerun-io/rerun/releases/latest/
140-
* Using `pip`: `pip3 install rerun-sdk` (warning: pip version has slower start times!)
140+
* Using `pip`: `pip3 install rerun-sdk`
141141
142142
For more information, refer to our complete install documentation over at:
143143
https://rerun.io/docs/getting-started/installing-viewer
@@ -148,7 +148,7 @@ pub fn spawn(opts: &SpawnOptions) -> Result<(), SpawnError> {
148148
You can install an appropriate version of the Rerun Viewer via binary releases:
149149
* Using `cargo`: `cargo binstall --force rerun-cli@__VIEWER_VERSION__` (see https://github.com/cargo-bins/cargo-binstall)
150150
* Via direct download from our release assets: https://github.com/rerun-io/rerun/releases/__VIEWER_VERSION__/
151-
* Using `pip`: `pip3 install rerun-sdk==__VIEWER_VERSION__` (warning: pip version has slower start times!)
151+
* Using `pip`: `pip3 install rerun-sdk==__VIEWER_VERSION__`
152152
153153
For more information, refer to our complete install documentation over at:
154154
https://rerun.io/docs/getting-started/installing-viewer

0 commit comments

Comments
 (0)