I need to use a Python library that is not available on my web hosting server. What is the probable procedure to get it to work? Put the necessary files in my cgi-bin? Ask the host to install it globally or only for me? Your help is greatly appreciated.
Related posts:
- How Do I Upgrade Cpanel, Php, And Mysql, As Well As Install Python On A Linux Server? My friend is leasing his own server for the first...
- What Are The Steps In Hosting A Event At A Library? I want to host a poetry session at my library,...
- Do You Need Server Access To Install Whm? Or Can It Be Installed Using Php And Mysql? Please Help!? —————————————-… I want to upload WHM to my unlimited web...
- How Do I Install A Dns Server Using Win2k3? Okay, I am trying to install a simple DNS server...
- What Is The Best Company For Hosting Applications On A Dedicated Server? I have an application that I need to host on...
Related posts brought to you by Yet Another Related Posts Plugin.


Please talk to the Web host administrator to set up the Python interpreter for u
So assumably you already have Python installed if you want to use a Python library.
I’ve asked my provider (Webfaction) in the past to install a Python library and they responded to just install it myself locally.
I think they are worried about introducing libraries with security flaws.
Is your Python library pure python? Then it is very to install because you just copy the files to your local server. If it has a C backing then you will need gcc to compile.
If you install the library in the folder where you import it then there’s nothing more to do. Or if you install it elsewhere you need to add that folder to your Python path.