Skip to content

Madhav-P-2005/Code-With-Python

Repository files navigation

Creating the Virtual Environment

python -m venv MyEnvironment


# Activating the Virtual Environment :-

sh
.\MyEnvironment\Scripts\activate

# Upgrading Pip :-  To update pip, run :-

sh
python.exe -m pip install --upgrade pip


# Installing Required Modules :- 
Install the required modules using the following commands:

sh
pip install pyjokes
pip install pyttsx3


# To run a Particular file / folder Specifically :-

sh
python MyEnvironment/Practice-Sets/Practice-Set-9.py