-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSTART_HERE.bat
More file actions
33 lines (31 loc) · 964 Bytes
/
START_HERE.bat
File metadata and controls
33 lines (31 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
@echo off
cls
color 0A
echo.
echo ========================================================================
echo BBB PERMEABILITY WEB INTERFACE
echo ========================================================================
echo.
echo Starting the beautiful web interface...
echo.
echo The app will automatically open in your browser at:
echo http://localhost:8501
echo.
echo Features:
echo - Beautiful interactive UI with gradients
echo - 20+ pre-loaded molecules to test
echo - Real-time predictions
echo - Interactive charts and visualizations
echo - Export results to CSV/JSON
echo.
echo ========================================================================
echo.
echo Press Ctrl+C to stop the server
echo.
echo ========================================================================
echo.
set KMP_DUPLICATE_LIB_OK=TRUE
cd /d "%~dp0"
start http://localhost:8501
"C:\Users\nakhi\anaconda3\python.exe" -m streamlit run app.py
pause