Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install ssm-parameter-store via python pip




ssm-parameter-store - Simple Python wrapper for getting values from AWS Systems Manager Parameter Store, it belongs to Classifiers:

- Framework :: Django
- Programming Language :: Python :: Implementation :: PyPy

When you know about this project and you want to new install ssm-parameter-store to support your project or you get trouble as ModuleNotFoundError: No module named "ssm-parameter-store" or ImportError: cannot import name "ssm-parameter-store" in your project, let follow this tutorial to install ssm-parameter-store



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_ssm-parameter-store_env

- Active the virtual environment

test_ssm-parameter-store_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_ssm-parameter-store_env

- Active the virtual environment

source test_ssm-parameter-store_env/bin/active


Step 2: OK, now, let flow below content to start the installation ssm-parameter-store

To install ssm-parameter-store on Windows(CMD):

py -m pip install ssm-parameter-store

To install ssm-parameter-store on Unix/macOs:

pip install ssm-parameter-store


Step 3: If you want to install a specific ssm-parameter-store version, add ==<ssm-parameter-store version> to the end command line

Example:

pip install ssm-parameter-store==18.7.3


Please see the version list below table:

VersionReleased dateCommand
ssm-parameter-store 19.11.02019-11-06T00:56:23Windows:

py -m pip install ssm-parameter-store==19.11.0

Unix/macOs:

pip install ssm-parameter-store==19.11.0

ssm-parameter-store 19.5.02019-05-13T05:39:09Windows:

py -m pip install ssm-parameter-store==19.5.0

Unix/macOs:

pip install ssm-parameter-store==19.5.0

ssm-parameter-store 18.7.72018-07-08T13:23:15Windows:

py -m pip install ssm-parameter-store==18.7.7

Unix/macOs:

pip install ssm-parameter-store==18.7.7

ssm-parameter-store 18.7.62018-07-08T11:56:18Windows:

py -m pip install ssm-parameter-store==18.7.6

Unix/macOs:

pip install ssm-parameter-store==18.7.6

ssm-parameter-store 18.7.52018-07-08T09:56:05Windows:

py -m pip install ssm-parameter-store==18.7.5

Unix/macOs:

pip install ssm-parameter-store==18.7.5

ssm-parameter-store 18.7.42018-07-08T09:38:25Windows:

py -m pip install ssm-parameter-store==18.7.4

Unix/macOs:

pip install ssm-parameter-store==18.7.4

ssm-parameter-store 18.7.32018-07-08T08:10:29Windows:

py -m pip install ssm-parameter-store==18.7.3

Unix/macOs:

pip install ssm-parameter-store==18.7.3


Step 4: Otherwise, you can install ssm-parameter-store from local archives:

Download the distribution file from ssm-parameter-store-19.11.0.tar.gz or the specific ssm-parameter-store version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_ssm-parameter-store_downloaded_file>

On Unix/macOs:

pip install <path_to_ssm-parameter-store_downloaded_file>


List distribution:


Project link:

- Homepage