this is a simple python program that generates random passwords with 6 characters atleast for the user
- first you have to clone this repo using this command in your terminal :
git clone https://github.com/youssefkhalil320/Random_Password_Generator-by-Python
- then you will have to write this script in your terminal to change directories :
cd Random_Password_Generator-by-Python
- now you can run the python files in your terminal
-
first things first you need to install the anaconda distribution through their official website and make sure to include the bin files in the PATH : https://www.anaconda.com/download
-
then after cloning the repo in your device you should run this script to use the already setup virtual environment :
cd abooleehvenv && conda activate "abooleehvenv"
- or if you prefer to create your own virtual environment with your preferred python version you could run this script instead :
conda create -p venvname python==3.x -y && conda activate "venvname"
- to deactivate the virtual environment in your project just run this script :
conda deactivate