Sfoglia il codice sorgente

Fix: better start experience PYTHONPATH in shell (#5593)

### What problem does this PR solve?

As title export PYTHONPATH in the shell

### Type of change

- [x] Refactoring

Signed-off-by: yihong0618 <zouzou0208@gmail.com>
tags/v0.17.1
yihong 8 mesi fa
parent
commit
6e828f0fcb
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. 2
    1
      docker/launch_backend_service.sh

+ 2
- 1
docker/launch_backend_service.sh Vedi File

@@ -5,6 +5,7 @@ set -e

# Unset HTTP proxies that might be set by Docker daemon
export http_proxy=""; export https_proxy=""; export no_proxy=""; export HTTP_PROXY=""; export HTTPS_PROXY=""; export NO_PROXY=""
export PYTHONPATH=$(pwd)

export LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu/

@@ -100,4 +101,4 @@ run_server &
PIDS+=($!)

# Wait for all background processes to finish
wait
wait

Loading…
Annulla
Salva