Struggling with Python App Dependencies Installation

Jamwa

New member
Joined
Mar 12, 2024
Messages
1
Hey, I'm on the Python App creation section, I've created a super basic flask app just to get me started but I can't even install the dependencies.

Here's my pyprojec.toml file (I've tested it in a virtual environment to make sure it works):
Code:
[project]
name = "Flask_Test_Project"
authors = [
    {name = "James Russell"},
]
version = "1.0"
readme = "README.md"
requires-python = ">=3.12"

dependencies = [
  "Flask >=3.0.2",
]

The issue I'm having is on this step:
1710500388425.png


When i run Pip Install i get this:
1710500444667.png


Any assistance would greatly be appreciated.
 
Back
Top