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):
The issue I'm having is on this step:
When i run Pip Install i get this:
Any assistance would greatly be appreciated.
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:
When i run Pip Install i get this:
Any assistance would greatly be appreciated.