Reputation: 13367
Given: - Installed 64bit Windows perforce plugin - My workspace root: "c:\source" - Set "Add workspace root" from plugin preferences - Right click on file in "c:\source\project1" select check out - No status icons visible (checked in/out/, out of date, etc,)
Error: Client '' unknown - use 'client' command to create it.
Upvotes: 14
Views: 11344
Reputation: 2418
In my case the ~/.p4enviro
config file was using an outdated value for the P4CLIENT
. I updated the value to the correct name of my current workspace and it fixed the problem.
Upvotes: 0
Reputation: 41
I had the same problem. Using
set P4CLIENT=my_workspace_name
in the terminal and then using p4 commnd
has worked for me.
Upvotes: 4
Reputation: 3882
Set environmental variable P4CLIENT to your workspace name. Your workspace name is stored in p4 visual client under Connection->Edit Current Workspace
Upvotes: 13
Reputation: 888263
You need to create the client by running p4 client
on the command line or using P4V.
Upvotes: 9