Browsed by
Category: python

Error While Installing mysqlclient in virtualenv

Error While Installing mysqlclient in virtualenv

While trying to connect MySQL database with Django 3.2 in my Ubuntu 18.04, I encounted this error.  I was not able to pip install mysqlclient in my virtualenv. This short tutorial is about how to fix this issue. If your MySQL setup is running perfect and you are unable to install mysqlclient in virtualenv then first check if there is no installation error outside the environment. If mysqlclient shows no issue then try with the…

Read full Article Read More

How to install python and pygame in ubuntu?

How to install python and pygame in ubuntu?

Here are few instruction to install python and pygame in your linux system. Copy or type following command in your linux terminal. sudo apt-get install python-2.7 To further install idle in your system you need to type following command. sudo apt-get install idle To install pygame you have to type following command. sudo apt-get install python-pygame