bark icon indicating copy to clipboard operation
bark copied to clipboard

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

Open Duemellon opened this issue 2 years ago • 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:?

Duemellon avatar May 13 '23 14:05 Duemellon

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

katfacey avatar May 13 '23 14:05 katfacey