On Windows OS: Installing cookbook > LLMS > GORQ > Video Summary #208
Closed
tsktech
started this conversation in
Show and tell
Replies: 1 comment
-
<3 love this @tsktech |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
STEP 1
is has flows (btw i run anaconda on win11)
for windows
STEP 2 Note the base is changed to aienv
(aienv) XXXX> export GROQ_API_KEY=***
for windows export is set
(aienv) XXXX> set GROQ_API_KEY=***
STEP 3
pip install -r cookbook/llms/groq/video_summary/requirements.txt
the best solution was to git clone https://github.com/phidatahq/phidata.git or you could download the repo.zip file and unzip it to a folder
mine was unzipped to C:\User\XXXX\ (WIN does not have git installed by default)
(aienv) XXXX> pip install -r C:\User\XXXX\Phidata\cookbook\llms\groq\video_summary\requirements.txt
STEP 4
streamlit run cookbook/llms/groq/video_summary/app.py
on windows
(aienv) XXXX> streamlit run C:\User\XXXX\Phidata\cookbook\llms\groq\video_summary\app.py
I got an error
'streamlit' is not recognized as an internal or external command, operable program or batch file.
I did the following to add channel as detailed conda-forge.org
after its installed try
(aienv) XXXX> streamlit run C:\User\XXXX\Phidata\cookbook\llms\groq\video_summary\app.py
Regards
Srikanth Kamath
{ Note:
if you get user permission error, then run-in privileged mode the "anaconda Prompt" --> "Right click run as administrator"
}
and there we go !! thanks @ashpreetbedi @ysolanky and all other contributors
Beta Was this translation helpful? Give feedback.
All reactions