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

How to install pyrfa via python pip




pyrfa - Python API for Refinitiv (Thomson Reuters) Enterprise Platform, it belongs to Classifiers:

- Programming Language :: Python :: 2.6
- Topic :: Software Development :: Build Tools

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



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_pyrfa_env

- Active the virtual environment

test_pyrfa_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_pyrfa_env

- Active the virtual environment

source test_pyrfa_env/bin/active


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

To install pyrfa on Windows(CMD):

py -m pip install pyrfa

To install pyrfa on Unix/macOs:

pip install pyrfa


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

Example:

pip install pyrfa==7.7.0


Please see the version list below table:

VersionReleased dateCommand
pyrfa 8.5.32018-11-29T08:27:54Windows:

py -m pip install pyrfa==8.5.3

Unix/macOs:

pip install pyrfa==8.5.3

pyrfa 8.5.22018-09-07T09:13:50Windows:

py -m pip install pyrfa==8.5.2

Unix/macOs:

pip install pyrfa==8.5.2

pyrfa 8.5.02018-07-18T16:34:42Windows:

py -m pip install pyrfa==8.5.0

Unix/macOs:

pip install pyrfa==8.5.0

pyrfa 8.4.02018-04-24T07:56:13Windows:

py -m pip install pyrfa==8.4.0

Unix/macOs:

pip install pyrfa==8.4.0

pyrfa 8.3.02018-02-07T07:18:45Windows:

py -m pip install pyrfa==8.3.0

Unix/macOs:

pip install pyrfa==8.3.0

pyrfa 8.2.32017-11-03T07:26:30Windows:

py -m pip install pyrfa==8.2.3

Unix/macOs:

pip install pyrfa==8.2.3

pyrfa 8.2.22017-09-22T03:33:04Windows:

py -m pip install pyrfa==8.2.2

Unix/macOs:

pip install pyrfa==8.2.2

pyrfa 8.2.12017-09-11T11:27:08Windows:

py -m pip install pyrfa==8.2.1

Unix/macOs:

pip install pyrfa==8.2.1

pyrfa 8.2.02017-05-22T05:42:16Windows:

py -m pip install pyrfa==8.2.0

Unix/macOs:

pip install pyrfa==8.2.0

pyrfa 8.1.02017-03-17T03:13:32Windows:

py -m pip install pyrfa==8.1.0

Unix/macOs:

pip install pyrfa==8.1.0

pyrfa 7.7.02017-03-17T03:21:28Windows:

py -m pip install pyrfa==7.7.0

Unix/macOs:

pip install pyrfa==7.7.0


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

Download the distribution file from pyrfa-8.5.3-cp37-none-win_amd64.whl or the specific pyrfa version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pyrfa_downloaded_file>

On Unix/macOs:

pip install <path_to_pyrfa_downloaded_file>


List distribution:


Project link:

- Homepage