Computer Science Project
-
Create a virtual environment use command : python3 -m venv
-
Download django without using sudo as it might cause huge errors use command : pip3 install django
-
Connect your project with mysql use command: pip3 install mysqlclient Only if the above doesn't work, follwo below procedure use commands: pip3 install pymysql pip3 install cryptography Edit the init.py file of your root project folder write: ... import pymysql pymysql.install_as_MySQLdb() ...
then run the file once to install MySQLdb to your site packages.