- RxPY - Discussion
- RxPY - Useful Resources
- RxPY - Quick Guide
- RxPY - Examples
- RxPY - Concurrency Using Scheduler
- RxPY - Working With Subject
- RxPY- Operators
- RxPY - Working with Observables
- RxPY - Latest Release Updates
- RxPY - Environment Setup
- RxPY - Overview
- RxPY - Home
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
RxPY - Environment Setup
In this chapter, we will work on the installation of RxPy. To start working with RxPY, we need to install Python first. So, we are going to work on the following −
Install Python
Install RxPy
Instalpng Python
Go to the Python official site:
as shown below, and cpck on the latest version available for Windows, Linux/Unix, and mac os. Download Python as per your 64 or 32-bit OS available with you.Once you have downloaded, cpck on the .exe file and follow the steps to install python on your system.
The python package manager, i.e. pip will also get installed by default with the above installation. To make it work globally on your system, directly add the location of python to the PATH variable, the same is shown at the start of the installation, to remember to check the checkbox, which says ADD to PATH. In case, you forget to check it, please follow the below given steps to add to PATH.
To add to PATH follow the below steps −
Right-cpck on your Computer icon and cpck on properties → Advanced System Settings.
It will display the screen as shown below −
Cpck on Environment Variables as shown above. It will display the screen as shown below −
Select Path and cpck on Edit button, add the location path of your python at the end. Now, let’s check the python version.
Checking for python version
E:pyrx>python --version Python 3.7.3
Install RxPY
Now, that we have python installed, we are going to install RxPy.
Once python is installed, python package manager, i.e. pip will also get installed. Following is the command to check pip version −
E:pyrx>pip --version pip 19.1.1 from c:usersxxxxappdatalocalprogramspythonpython37pbsite- packagespip (python 3.7)
We have pip installed and the version is 19.1.1. Now, we will use pip to install RxPy
The command is as follows −
pip install rxAdvertisements