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

How to install psptool via python pip




psptool - PSPTool is a tool for dealing with AMD binary blobs, it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Topic :: Security

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



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_psptool_env

- Active the virtual environment

test_psptool_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_psptool_env

- Active the virtual environment

source test_psptool_env/bin/active


Step 2: OK, now, let flow below content to start the installation psptool

To install psptool on Windows(CMD):

py -m pip install psptool

To install psptool on Unix/macOs:

pip install psptool


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

Example:

pip install psptool==2.0


Please see the version list below table:

VersionReleased dateCommand
psptool 2.52022-07-07T09:22:12Windows:

py -m pip install psptool==2.5

Unix/macOs:

pip install psptool==2.5

psptool 2.42022-05-25T14:58:55Windows:

py -m pip install psptool==2.4

Unix/macOs:

pip install psptool==2.4

psptool 2.32021-11-16T09:47:55Windows:

py -m pip install psptool==2.3

Unix/macOs:

pip install psptool==2.3

psptool 2.22020-10-06T08:57:47Windows:

py -m pip install psptool==2.2

Unix/macOs:

pip install psptool==2.2

psptool 2.12020-02-02T13:34:05Windows:

py -m pip install psptool==2.1

Unix/macOs:

pip install psptool==2.1

psptool 2.02019-11-07T21:11:09Windows:

py -m pip install psptool==2.0

Unix/macOs:

pip install psptool==2.0


Step 4: Otherwise, you can install psptool from local archives:

Download the distribution file from psptool-2.5.tar.gz or the specific psptool version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_psptool_downloaded_file>

On Unix/macOs:

pip install <path_to_psptool_downloaded_file>


List distribution:


Project link:

- Homepage