A Blog on DevOps and Hybrid Cloud

How to install python 3.8

Tags: python

Published May 14, 2024, 5:54 a.m. by cloudblog

[root@mcloudblog cloudblog]# vi /etc/sudoers
[root@mcloudblog cloudblog]#
[root@mcloudblog cloudblog]#
[root@mcloudblog cloudblog]# cat /etc/sudoers
## Sudoers allows particular users to run various commands as
## the root user, without needing the root …

How can I reset size of hibernation file?

Tags: window10

Published May 14, 2024, 5:49 a.m. by cloudblog

You can change the size of hiberfil.sys using the powercfg utility:

POWERCFG /HIBERNATE /SIZE 100
  • Input command in your Start Menu search bar, then select Run as Administrator.
  • Enter powercfg …

Django returns 'TemplateDoesNotExist' when using Crispy Forms

Tags: crispy_form

Published May 14, 2024, 5:44 a.m. by tonu11singh@gmail.com

Using Crispy Forms with Django, I can only get a TemplateDoesNotExist error when using any feature of Crispy Forms. if you need to use bootstrap4

pip install django-crispy-forms pip install …