ModuleNotFoundError: No module named ‘MySQLdb’
When running migration for a Django application with “python manage.py migrate”, I got the following error message ModuleNotFoundError: No module named ‘MySQLdb’…
When running migration for a Django application with “python manage.py migrate”, I got the following error message ModuleNotFoundError: No module named ‘MySQLdb’…
When installing a python module on Ubuntu, I got the following error message error: invalid command ‘bdist_wheel’ The error is fixed by…
First, install the dependency yum install -y wget zlib-devel yum groupinstall -y “Development tools” Install OpenSSL as the openssl-devel package provided by…
When running a python application, I got the error message ModuleNotFoundError: No module named ‘PIL’ (venv) boby@sok-01:~/work/powder (master)$ python main.py Traceback (most…
When installing the python mysqlclient module with pip, I got the error “OSError: mysql_config not found”. (venv) root@sok:~# pip install mysqlclient Collecting…
Uvicorn is a lightning-fast ASGI server used to serve Python ASGI frameworks like FastAPI, Django Channels, Quart, BlackSheep, etc… https://www.uvicorn.org To install…
Flask is a Python framework. You can find more info at the official website. https://flask.palletsprojects.com/ How to start a Flask application? To…
To install Python 3.8 on CentOS, you need to install OpenSSL as the one installed by CentOS from yum is very old.…
When running following python script i get error “HTTP Error 403 request disallowed by robots.txt” from mechanize import Browser a = [‘https://google.com’,…
When install dlib python module, i get error ERROR: Failed building wheel for dlib fatal error: Python.h: No such file or directory…
When install mysqlclient python module, i get error (venv) boby@sok-01:~/Downloads/django-deploy$ pip install mysqlclient==1.4.2.post1 Collecting mysqlclient==1.4.2.post1 Using cached https://files.pythonhosted.org/packages/f4/f1/3bb6f64ca7a429729413e6556b7ba5976df06019a5245a43d36032f1061e/mysqlclient-1.4.2.post1.tar.gz Building wheels for collected…
On Ubuntu 18.04, when i install mysqlclient python module, i get error (venv) boby@sok-01:~/Downloads/django-deploy$ pip install mysqlclient==1.4.2.post1 Collecting mysqlclient==1.4.2.post1 Using cached https://files.pythonhosted.org/packages/f4/f1/3bb6f64ca7a429729413e6556b7ba5976df06019a5245a43d36032f1061e/mysqlclient-1.4.2.post1.tar.gz…