Install AWS ParallelCluster in a virtual environment (recommended) (original) (raw)

We recommend that you install AWS ParallelCluster in a virtual environment to avoid requirement version conflicts with otherpip packages.

Prerequisites
To install AWS ParallelCluster in a virtual environment
  1. If virtualenv isn't installed, install virtualenv using pip3. If python3 -m virtualenv help displays help information, go to step 2.
$ python3 -m pip install --upgrade pip  
$ python3 -m pip install --user --upgrade virtualenv  

Run exit to leave the current terminal window and open a new terminal window to pick up changes to the environment. 2. Create a virtual environment and name it.

$ python3 -m virtualenv ~/apc-ve  

Alternatively, you can use the -p option to specify a specific version of Python.

$ python3  -m virtualenv -p $(which python3) ~/apc-ve  
  1. Activate your new virtual environment.
$ source ~/apc-ve/bin/activate  
  1. Install AWS ParallelCluster into your virtual environment.
(apc-ve)~$ python3 -m pip install --upgrade "aws-parallelcluster"  
  1. Install Node Version Manager and the latest Long-Term Support (LTS) Node.js version. AWS Cloud Development Kit (AWS CDK) requires Node.js for CloudFormation for template generation.
Note

If your Node.js installation isn't working on your platform, you can install an LTS version prior to the latest LTS version. For more information, see the Node.js release schedule and the AWS CDK prerequisites.
Example Node.js installation command:

$  nvm install --lts=Hydrogen  
$ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash  
$ chmod ug+x ~/.nvm/nvm.sh  
$ source ~/.nvm/nvm.sh  
$ nvm install --lts  
$ node --version  
  1. Verify that AWS ParallelCluster is installed correctly.
$ pcluster version  
{  
  "version": "3.13.0"  
}  

You can use the deactivate command to exit the virtual environment. Each time you start a session, you must reactivate the environment.

To upgrade to the latest version of AWS ParallelCluster, run the installation command again.

(apc-ve)~$ python3 -m pip install --upgrade "aws-parallelcluster"

Installing the AWS ParallelCluster CLI

Installing AWS ParallelCluster in a non-virtual environment using pip

Did this page help you? - Yes

Thanks for letting us know we're doing a good job!

If you've got a moment, please tell us what we did right so we can do more of it.

Did this page help you? - No

Thanks for letting us know this page needs work. We're sorry we let you down.

If you've got a moment, please tell us how we can make the documentation better.