How to Install Whl Packages and Modules in Python

Sometimes, you might need some packages which do not come with the standard Python libraries and you would want to install them separately.

You will notice how frustrating it is when you get stuck because of a package you are missing.

 

Sentdex on Youtube covers that accurately and you can watch him here:

 

 

Other relevant links to go with the video:

  1. whl files 
  2. Fixing issues with TK and TCL libraries : Check the code by David Lukas Müller 

Hope this helps you.

 

Want more information like this?

Similar Posts

  • |

    Quick Example and Walk-Through JSON with Python

    This is a quick to create a dictionary object , write it to a JSON file and then read back the file and convert it to a dictionary and access the items in the dictionary. Credit to : codebasics.  You can check him out on Youtube In [3]:

      In [6]:

      Out[6]:

    In [14]:…

  • Matplotlib Pyplot Plt Python Pandas Data Visualization Plotting

      This is some quick notes about graphing or plotting graphs with Matplotlib in Python. Credits to sentdex.  You can check him out on Youtube.

      In [4]:

      In [10]:

      In [14]:

      In [20]:

      In [23]:

      In [30]:

      Out[30]:

    In [48]:

        Want more information like this?

  • |

    MySQL – Summarizing Data – SUM COUNT -MIN -MAX – AVG – DOGNITION Database

    Summarizing  Data This week we are looking at five most common aggregate functions used to summarize information stored in tables: COUNT and SUM very frequently. COUNT is the only aggregate function that can work on any type of variable. The other four aggregate functions are only appropriate for numerical data. All aggregate functions require you…

  • Basic Plotting Using Bokeh Python Pandas Library – Scatter, Line Visualizations

      Bokeh is a powerful framework for data visualization in Python. Here I take a look at straightforward plotting and visualization using this powerful library. Credit to PythonHow. You can check him out on Youtube bokeh.models #It is a low level interface which involves a lot of work bokeh.plotting # It is a middle level interface bokeh.chart #…

Leave a Reply

Your email address will not be published. Required fields are marked *