Solved error: PGPT_PROFILES=local make run #1141
Replies: 5 comments 5 replies
-
I faced the same problem but now i face the same issue while trying to run
|
Beta Was this translation helpful? Give feedback.
-
ResolvedAbba BardeOn 1 Nov 2023, at 12:38, TheodorC ***@***.***> wrote:
So was it solved or not?
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you commented.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
I'm still running into this error. Setting the environment variable did not help. |
Beta Was this translation helpful? Give feedback.
-
@SamNeblett set the environment variable for PGPT_PROFILES as local
This would work |
Beta Was this translation helpful? Give feedback.
-
I found a workaround in deactivation the Metal GPU "CMAKE_ARGS="-DLLAMA_METAL=off"" Any solution for Apple M2Max? |
Beta Was this translation helpful? Give feedback.
-
I had the following error on windows 10:
PGPT_PROFILES=local make run
PGPT_PROFILES=local : The term 'PGPT_PROFILES=local' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is
correct and try again.
At line:1 char:1
COMMENT: I was trying to run the command PGPT_PROFILES=local make run on a Windows platform using PowerShell. The syntax VAR=value command is typical for Unix-like systems (e.g., Linux, macOS) and won't work directly in Windows PowerShell.
To resolve this issue, I needed to set the environment variable differently in PowerShell and then run the command.
SOLUTION:
$env:PGPT_PROFILES = "local"
make run
Beta Was this translation helpful? Give feedback.
All reactions