Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 1.07 KB

File metadata and controls

47 lines (31 loc) · 1.07 KB

PocketVina UI App

Watch PocketVina UI demo
Click the image to watch how to use PocketVina UI on YouTube

Run the web UI in two simple ways.

Option A — Python (no Docker)

After completing installation in the root repo (see README.md → Installation), activate your environment and install UI packages, then run the app from the repo root:

pip install flask pandas
python3 app/app.py

Open: http://127.0.0.1:7860/

Option B — Docker (GPU)

Build from the repo root and run:

cd PocketVina
docker build --network=host -t pocketvina:v0.0.1 .
docker run --gpus all -it -p 7860:7860 pocketvina:v0.0.1 bash
python3 app/app.py

Or pull the prebuilt image and run:

docker pull asarigun/pocketvina:v0.0.1
docker run --gpus all -it -p 7860:7860 asarigun/pocketvina:v0.0.1 bash
python3 app/app.py

Open: http://127.0.0.1:7860/