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

How to install uefi-r2 via python pip




uefi-r2 - Tools for analyzing UEFI firmware using radare2/rizin, it belongs to Classifiers:

- Development Status :: 3 - Alpha
- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Operating System :: OS Independent

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



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_uefi-r2_env

- Active the virtual environment

test_uefi-r2_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_uefi-r2_env

- Active the virtual environment

source test_uefi-r2_env/bin/active


Step 2: OK, now, let flow below content to start the installation uefi-r2

To install uefi-r2 on Windows(CMD):

py -m pip install uefi-r2

To install uefi-r2 on Unix/macOs:

pip install uefi-r2


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

Example:

pip install uefi-r2==1.0.0


Please see the version list below table:

VersionReleased dateCommand
uefi-r2 1.2.42022-05-06T15:32:47Windows:

py -m pip install uefi-r2==1.2.4

Unix/macOs:

pip install uefi-r2==1.2.4

uefi-r2 1.2.32021-12-16T13:48:39Windows:

py -m pip install uefi-r2==1.2.3

Unix/macOs:

pip install uefi-r2==1.2.3

uefi-r2 1.2.22021-12-09T22:37:17Windows:

py -m pip install uefi-r2==1.2.2

Unix/macOs:

pip install uefi-r2==1.2.2

uefi-r2 1.2.12021-11-30T23:34:51Windows:

py -m pip install uefi-r2==1.2.1

Unix/macOs:

pip install uefi-r2==1.2.1

uefi-r2 1.2.02021-11-29T12:50:48Windows:

py -m pip install uefi-r2==1.2.0

Unix/macOs:

pip install uefi-r2==1.2.0

uefi-r2 1.1.32021-10-21T21:39:01Windows:

py -m pip install uefi-r2==1.1.3

Unix/macOs:

pip install uefi-r2==1.1.3

uefi-r2 1.1.22021-10-21T16:54:25Windows:

py -m pip install uefi-r2==1.1.2

Unix/macOs:

pip install uefi-r2==1.1.2

uefi-r2 1.1.12021-10-20T10:26:36Windows:

py -m pip install uefi-r2==1.1.1

Unix/macOs:

pip install uefi-r2==1.1.1

uefi-r2 1.1.02021-10-19T11:22:45Windows:

py -m pip install uefi-r2==1.1.0

Unix/macOs:

pip install uefi-r2==1.1.0

uefi-r2 1.0.32021-09-02T16:17:54Windows:

py -m pip install uefi-r2==1.0.3

Unix/macOs:

pip install uefi-r2==1.0.3

uefi-r2 1.0.22021-08-31T19:49:31Windows:

py -m pip install uefi-r2==1.0.2

Unix/macOs:

pip install uefi-r2==1.0.2

uefi-r2 1.0.12021-06-17T16:25:07Windows:

py -m pip install uefi-r2==1.0.1

Unix/macOs:

pip install uefi-r2==1.0.1

uefi-r2 1.0.02021-06-16T00:12:54Windows:

py -m pip install uefi-r2==1.0.0

Unix/macOs:

pip install uefi-r2==1.0.0


Step 4: Otherwise, you can install uefi-r2 from local archives:

Download the distribution file from uefi_r2-1.2.4.tar.gz or the specific uefi-r2 version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_uefi-r2_downloaded_file>

On Unix/macOs:

pip install <path_to_uefi-r2_downloaded_file>


List distribution:


Project link:

- Homepage