how to download idle?
Install python modules/package using IDLE on Windows - Stack Overflow
Where can I download the 2.7.13 IDLE?
Rodeo 1.0: a Python IDE on your Desktop
Videos
so i downloaded python from its website but then it didnt had pip and also when i tried to download pip using it it didnt work so i downloaded python from microsoft store but and i downloaded pip but then when i try to use it there is no idle with it and when i try to search for idle it just show me python website
You can install IDLE for Python 3 by installing the idle3 package in the official Ubuntu repositories:
sudo apt-get install idle3
For Python 2, replace idle3 with idle.
Use this package. Any of IDLE3 packages are fine. If you install IDLE3 it will get updated when they release a new version of IDLE3. But if you install IDLE(using Python-3.4), it won't get updated when IDLE for 3.5 is available.

Under present versions of Python (version 3.4 or above), do the following:
Windows
At the command prompt enter
py -3 -m pip install BeautifulSoup4
Linux
At the terminal enter
sudo python3 -m pip install BeautifulSoup4
you can use pip(a package manager for python) to install dependencies . check this link : https://pip.pypa.io/en/latest/installing.html