V-FOR-VEND3TTA / the-4th-kind

The 4th Kind is an AI consulting business aimed at integrating the 4th industrial safely into existing and new businesses
0 stars 0 forks source link

Create a Virtual Environment #1

Closed V-FOR-VEND3TTA closed 5 hours ago

V-FOR-VEND3TTA commented 1 week ago

To ensure consistent dependency management and avoid conflicts with system-wide Python packages, we need to create and configure a virtual environment for the project.

Acceptance Criteria:

  1. A virtual environment is created within the project directory.
  2. The virtual environment is named .venv.
  3. The .venv directory is added to .gitignore to prevent it from being committed to the repository.
  4. A clear command or set of instructions is provided in the README.md file for activating the virtual environment (Windows, macOS, and Linux).
  5. The project's dependencies are saved to a requirements.txt file using pip freeze > requirements.txt.

Tasks:

Notes:

V-FOR-VEND3TTA commented 5 hours ago

Successfully created a virtual environment.