installing helix-p4d package on ubuntu 20.04

I am trying to set up a helix core server for myself and a friend to work on. I want to get it running on a seperate PC I have laying around which runs ubuntu 20.04 but somehow I can't get the package to install.

I have completed all the steps described on the website () but when I ultimately run sudo apt-get install helix-p4d the system tells me it is unable to locate the package.

Has anyone installed this package before? If so could you help me out or point out some things I might have overlooked? Thanks!

1 Answer

It seems that you have missed some essential step. Open terminal and type:

wget -qO - | sudo apt-key add -
cat <<EOF | sudo tee /etc/apt/sources.list.d/perforce.list
deb focal release
EOF
sudo apt-get update
sudo apt-get install helix-p4d

Reference:

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like