Tagged in

Linux

How to fix Manjaro you are unable to boot, you need to load kernel first

I have a due boot system and one day after I updated my Manjaro system, I got this error:

file ‘/boot/vmlinuz-5.7-x86_64’ not found

you need to load the kernel first.

After some research, here I found the solution how to fix it:

  • Make sure internet is connected
  • sudo …

Setup Virtualenv for Any Project

  • Virtualenv is a very handy tool for creating separate virtual environments for python projects.
  • It is essential and probably mandatory in many cases to use Virtualenv or Virtualenv-like tools (i.e. Anaconda, Pipenv) to run a python project.
  • In this tutorial, I'll show you how to create a virtualenv for …