From bc9cb4563902ead221fa73bb4fd429f9a4d5fa1e Mon Sep 17 00:00:00 2001 From: Tony Benoy <8504669+tonybenoy@users.noreply.github.com> Date: Tue, 15 Oct 2024 20:55:18 +0300 Subject: [PATCH 1/3] Replace unix cmd with winget --- content/docs/pages/docs/getting-started.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/pages/docs/getting-started.mdx b/content/docs/pages/docs/getting-started.mdx index 1c8de4a04..f7719394a 100644 --- a/content/docs/pages/docs/getting-started.mdx +++ b/content/docs/pages/docs/getting-started.mdx @@ -153,7 +153,7 @@ Install 7zip: https://www.7-zip.org/download.html ```batch choco install pkgconfiglite deno winget install -e --id GnuWin32.UnZip -curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh +winget install -e --id Rustlang.Rustup cd V:\projects git clone https://github.com/mediar-ai/screenpipe cd V:\packages From aa63d6e33c1dbde95fa970a802a0f07c8cc0b773 Mon Sep 17 00:00:00 2001 From: Tony Benoy <8504669+tonybenoy@users.noreply.github.com> Date: Tue, 15 Oct 2024 21:06:00 +0300 Subject: [PATCH 2/3] Add rustup --- content/docs/pages/docs/getting-started.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/content/docs/pages/docs/getting-started.mdx b/content/docs/pages/docs/getting-started.mdx index f7719394a..ed3e52bec 100644 --- a/content/docs/pages/docs/getting-started.mdx +++ b/content/docs/pages/docs/getting-started.mdx @@ -168,6 +168,7 @@ SET VCPKG_ROOT=V:\packages\vcpkg SET LIBCLANG_PATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\Llvm\x64\bin cd V:\projects\screenpipe +rustup default stable cargo build --release --features cuda cd screenpipe-app-tauri From 412f7309140c35e0831358714049263ddf931649 Mon Sep 17 00:00:00 2001 From: Tony Benoy <8504669+tonybenoy@users.noreply.github.com> Date: Tue, 15 Oct 2024 22:39:15 +0300 Subject: [PATCH 3/3] Make executable --- content/docs/pages/docs/getting-started.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/docs/pages/docs/getting-started.mdx b/content/docs/pages/docs/getting-started.mdx index ed3e52bec..540c751c5 100644 --- a/content/docs/pages/docs/getting-started.mdx +++ b/content/docs/pages/docs/getting-started.mdx @@ -159,9 +159,9 @@ git clone https://github.com/mediar-ai/screenpipe cd V:\packages git clone https://github.com/microsoft/vcpkg.git cd vcpkg -bootstrap-vcpkg.bat -disableMetrics -vcpkg.exe integrate install --disable-metrics -vcpkg.exe install ffmpeg +./bootstrap-vcpkg.bat -disableMetrics +./vcpkg.exe integrate install --disable-metrics +./vcpkg.exe install ffmpeg SET PKG_CONFIG_PATH=V:\packages\vcpkg\packages\ffmpeg_x64-windows\lib\pkgconfig SET VCPKG_ROOT=V:\packages\vcpkg