Difference between revisions of "LLM: ollama PDF RAG"

From OnnoWiki
Jump to navigation Jump to search
(4 intermediate revisions by the same user not shown)
Line 3: Line 3:
 
Download source
 
Download source
  
 +
 +
sudo apt install python3-virtualenv python3-pip libgl1
 +
virtualenv --python=python3 venv
 +
source venv/bin/activate
  
 
  git clone https://github.com/tonykipkemboi/ollama_pdf_rag.git
 
  git clone https://github.com/tonykipkemboi/ollama_pdf_rag.git
  
Install pip
+
Install
 
 
  
  sudo apt install python3-pip
+
  cd ollama_pdf_rag
 
  pip install -r requirements.txt
 
  pip install -r requirements.txt
 
GAGAL:
 
 
error: externally-managed-environment
 
 
× This environment is externally managed
 
╰─> To install Python packages system-wide, try apt install
 
    python3-xyz, where xyz is the package you are trying to
 
    install.
 
 
 
  
 
Jalankan apps
 
Jalankan apps
Line 27: Line 19:
 
  streamlit run streamlit_app.py
 
  streamlit run streamlit_app.py
  
 +
Browse
 +
 +
http://ipaddress:8501
  
  

Revision as of 06:42, 16 July 2024

Sumber: https://github.com/tonykipkemboi/ollama_pdf_rag

Download source


sudo apt install python3-virtualenv python3-pip libgl1
virtualenv --python=python3 venv
source venv/bin/activate
git clone https://github.com/tonykipkemboi/ollama_pdf_rag.git

Install

cd ollama_pdf_rag
pip install -r requirements.txt

Jalankan apps

streamlit run streamlit_app.py

Browse

http://ipaddress:8501


Referensi