What Is a Virtual Environment?At its core, the main purpose of Python virtual environments is to create an isolated environment for Python projects. This means that each project can have its own dependencies, regardless of what dependencies every other project has.Remember do not put scripts inside virtual EnviromentTo get started, if you’re not using Python 3, you’ll want to install the virtualenv...
Friday, July 23, 2021
Monday, November 4, 2019
Kerberos - Basic Understanding
What is Kerberos?
Kerberos is an authentication protocol that works on the basis of tickets that allows clients to connect to services over an insecure network and still allow clients to prove their identity in a secure manner.
The steps described below are a compilation of what I found when reading...