Installation Instructions for Ubuntu LinuxΒΆ

In a terminal window:

  1. Make sure you have Python 2.7.x or Python 3.5.x installed:

    $ python -V
    Python 3.5.1
    

    Note: Ubuntu 12.04 (precise) and Ubuntu 14.04 (trusty) both come with Python 2.7.x, and Ubuntu 16.04 (xenial) comes with Python 3.5.1. Therefore, if you’re running any of those Ubuntu versions, you should already be good to go.

  2. Install GO-PCA using pip, the Python package manager

    $ sudo pip install gopca
    

    Note: If you need to be able to install gopca without admin privileges, look into conda (which you can get by installing Miniconda) or virtualenv (installable using pip). Both tools enable the creation of local Python environments that allow packages to be installed without admin privileges.