I have some very basic packages needed by my script. When the pipeline runs, it fails because it can't find/install the packages. Requirements.txt includes:
What am I doing wrong?
Thanks!
+ pip install -r requirements.txt
Collecting requests (from -r requirements.txt (line 1))
Downloading requests-2.31.0-py3-none-any.whl.metadata (4.6 kB)
Collecting datetime (from -r requirements.txt (line 2))
Downloading DateTime-5.5-py3-none-any.whl.metadata (33 kB)
ERROR: Could not find a version that satisfies the requirement re (from versions: none)
ERROR: No matching distribution found for re
G'day, @Alan Lanteigne
The error could mean two things:
The package you're trying to install is unavailable for your Python version.
If you use the default image, you can check the Python version here and see if the version is supported for https://pypi.org/project/DateTime/
Regards,
Syahrul
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.