Search found 5 matches
- 07 May 2020
- Forum: General Discussion on Coding
- Topic: install-snap” change in progress
- Replies: 1
- Views: 379728
Re: install-snap” change in progress
Hello @programmer I got the problem. I think one need to check the PID number for the snap application. Please execute the below command for this operation snap changes From here you will get the PID number of the snap application which is creating the troublesome Please execute the below command su...
- 20 Oct 2019
- Forum: Fixing Errors Python
- Topic: How to migrate SQLite Database to MYSQL in Django
- Replies: 1
- Views: 185679
Re: How to migrate SQLite Database to MYSQL in Django
Great Question which is addressed here. Before giving answer let me proceed with knowing you how python programs are interfaced with the databases. Do you know how python programs are interfacing with the databases. If not, then the answer is through drivers. Let me write down below Database Driver ...
- 20 Oct 2019
- Forum: Fixing Errors Python
- Topic: How to create a new Django Project
- Replies: 1
- Views: 187204
Re: How to create a new Django Project
Thanks for asking this question. Sorry we had forgotten to mention this in the tutorial Learn Django Overview . Let us describe here below To create Django project please have django installed. If you donot have, donot worry first install and create virtual environment and then activate it. To insta...
- 15 Sep 2019
- Forum: Fixing Errors Python
- Topic: TypeError: view must be a callable or a list/tuple in the case of include() in Django
- Replies: 1
- Views: 183425
Re: TypeError: view must be a callable or a list/tuple in the case of include() in Django
This error is showing because you have not defined any function of views in "urls.py" so it is not able to call function. This functionality was available before the version 1.1 of Django. Now you can change your import and url pattern like this: "urls.py": from django.conf.urls ...
- 11 Jun 2019
- Forum: Fixing Errors Python
- Topic: ImportError: No module named 'PyQt5.pyrcc_main'
- Replies: 1
- Views: 194047
Re: ImportError: No module named 'PyQt5.pyrcc_main'
Thanks for asking such question. I would congratulate you for asking the question in well structured way as this will help me to write the solution in best possible way. Second most important part I loved about this question is that you have tried a lot before asking to us. This is also excellent. T...