Skip to content
Snippets Groups Projects
Select Git revision
  • f3a825a90d3c630431abf6b54979c3733fda883d
  • 5.4 default protected
  • 5.5
  • dev/5.5
  • dev/5.4
  • dev/5.3_downgrade
  • feature/experimenttime_hack
  • 5.3 protected
  • _IntenSelect5.3
  • IntenSelect5.3
  • 4.27 protected
  • 4.26 protected
  • 5.0 protected
  • 4.22 protected
  • 4.21 protected
  • UE5.4-2024.1
  • UE5.4-2024.1-rc1
  • UE5.3-2023.1-rc3
  • UE5.3-2023.1-rc2
  • UE5.3-2023.1-rc
20 results

VirtualRealityPawn.cpp

Blame
  • set_paths.sh 423 B
    #!/usr/bin/zsh
    
    # path where Ollama binaries will be placed after download and extraction
    export OLLAMA_INSTALL_DIR=${OLLAMA_ROOT_DIR}/install
    
    # path to Python virtual environment
    export OLLAMA_VENV_DIR=${OLLAMA_ROOT_DIR}/venv_ollama
    
    # path to Ollama container image
    export OLLAMA_COINTAINER_IMAGE=${HOME}/ollama/ollama.sif
    
    # extend path to make it executable in the shell
    export PATH="${OLLAMA_INSTALL_DIR}/bin:${PATH}"