skip to Main Content

Can't install mysqlclient

pip install mysqlclient Collecting mysqlclient Using cached mysqlclient-2.1.1.tar.gz (88 kB) Preparing metadata (setup.py) .. done Building wheels for collected packages: mysqlclient Building wheel for mysqlclient (setup.py) .. error ERROR: Command errored out with exit status 1: command: 'c:usershpappdatalocalprogramspythonpython36python.exe' -u -c…

VIEW QUESTION

Can't filter empty fields in Django – Postgresql

I want to get a list of users that have provided an email in my database using Django. This is my query: list(App.objects.exclude(admins__email__exact='').values('admins__email')) which strangely excludes everything and gives: [] although when I run: list(App.objects.all().values('admins__email')) i can see a list…

VIEW QUESTION
Back To Top
Search