You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
windows installation are minimal for newcomers - please elaborate more - here are some suggestions that got me going
install WSL https://learn.microsoft.com/en-us/windows/wsl/install
2.Be warmed that I needed bitlocker recovery key on my win11 pro system to boot back after installing WSL because it detected changes in the boot system and wouldnt boot without recovery key. Had to log on to microsoft account to find my recovery key for bitlocker
install docker dekstop
enable docker integration into the wsl distro (Ubuntu is default installation of wsl) through the docker desktop app
Verify Docker Installation by running docker --version in your terminal or command prompt
start ubuntu (default linux distro) from windows - it should have an app installed after the installation
Navigate to the Project Directory . Use the cd command to navigate to this directory, e.g., cd /mnt/c/Projects/llama-gpt
remember /mnt/c is the path to c drive from ubuntu or linux
you might get a "permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock," if you try to run the command
./run.sh --model 7b in your linux terminal. To resolve this issue, you need to add your user to the docker group, which will grant the necessary permissions. Here's how you can do it:
sudo usermod -aG docker $USER
Apply Group Changes: by shutting down and restarting wsl. type wsl --shutdown in your Windows command prompt or PowerShell,
this will shut down wsl
restart wsl by typing ubuntu (default linux distro or whatever you have chosen) and check group membership by running
groups command in your terminal
Now you can run " ./run.sh --model 7b " command (assuming you are in correct directory where run.sh is located.
if the run.sh command doesnt run , make sure its executable by running ' chmod +x run.sh ' in terminal
The text was updated successfully, but these errors were encountered:
windows installation are minimal for newcomers - please elaborate more - here are some suggestions that got me going
2.Be warmed that I needed bitlocker recovery key on my win11 pro system to boot back after installing WSL because it detected changes in the boot system and wouldnt boot without recovery key. Had to log on to microsoft account to find my recovery key for bitlocker
remember /mnt/c is the path to c drive from ubuntu or linux
./run.sh --model 7b in your linux terminal. To resolve this issue, you need to add your user to the docker group, which will grant the necessary permissions. Here's how you can do it:
sudo usermod -aG docker $USER
this will shut down wsl
groups command in your terminal
The text was updated successfully, but these errors were encountered: