Skip to content

Files

Latest commit

4bb85ed · Jan 27, 2025

History

History
33 lines (24 loc) · 861 Bytes

README.md

File metadata and controls

33 lines (24 loc) · 861 Bytes

Plethora of Python

A list of Python 3 programming projects ranging from Beginner to Advanced. A work in progress.

Update Repository on GitHub

$ git status
$ git add -A
$ git commit -m "Updated README.md"
$ git push

Virtual Environment

It is recommended to run this program in a venv environment. Assuming that has already been set up, you can create a venv environment:

$ python3 -m venv plethora

Now you have to tell the system that you want to use this virtual environment, and you do that by activating it. To activate your brand new virtual environment you use the following command:

$ source plethora/bin/activate
(plethora) $ _

Requirements

Once you're in, please run the following command:

(plethora) $ cat requirements.txt | xargs -n 1 pip install