JonathanFly/bark

C-drive installation? How to launch from non-C?

Duemellon opened this issue · 1 comments

The BAT appears to have the expectation it will install on C: under username
@echo off
call %USERPROFILE%\mambaforge\Scripts\activate.bat bark-infinity-oneclick
python %USERPROFILE%\bark\bark_webui.py
pause

But I installed on E:\Bark
How do I modify this to properly run from E:?

make a new .bat file or modify the existing one. should look like this when done:

@echo off
"Path where your Python is stored\python.exe" "Path where your Bark is stored\bark_webui.py"
pause

for me, on my G:/ hard drive folder for ai-dedicated stuff, it looked something like this:

@echo off
"C:\Users\Admin\AppData\Local\Programs\Python\Python310\python.exe" "G:\ai\Bark\bark\bark_webui.py"
pause