Vercel Error during Django app deploemenr

I am getting this error during my build logs in vercel

Here is my vercel.json

{
  "version": 2,
  "builds": [
    {
      "src": "problem2/wsgi.py",
      "use": "@vercel/python",
      "config": {"runtime": "python3.11","buildCommand": "bash build_files.sh" }
    }
  ],
  "routes": [
    {
      "src": "/static/(.*)",
      "dest": "/static/$1"
    },
    {
      "src": "/(.*)",
      "dest": "problem2/wsgi.py"
    }
  ]
}

This is my build_files.sh

#!/bin/bash

pip install -r requirements.txt

python3.11 manage.py collectstatic

Please Help me to solve this error

Welcome @Aklesh06 !

Side note: Please do not post screenshots of text information, copy/paste the text into the body of your post, marked as preformatted text just like you’ve done with your code.

It would be very helpful if you posted the complete traceback along with the error message.

Sorry for being an immature and send screenshot rather than text .

Here is the error I have encounter during my deployement

[01:24:06.098] Running build in Washington, D.C., USA (East) – iad1
[01:24:06.186] Cloning github.com/Aklesh06/NextGrowthLab-assignment (Branch: main, Commit: a3f2f2e)
[01:24:06.558] Previous build cache not available
[01:24:08.756] Cloning completed: 2.570s
[01:24:09.897] Running "vercel build"
[01:24:10.307] Vercel CLI 39.2.0
[01:24:10.449] WARN! Due to `builds` existing in your configuration file, the Build and Development Settings defined in your Project Settings will not apply. Learn More: https://vercel.link/unused-build-settings
[01:24:10.469] Installing required dependencies...
[01:24:34.548] Failed to run "pip3.12 install --disable-pip-version-check --target . --upgrade -r /vercel/path0/Scripts/problem2/requirements.txt"
[01:24:34.549] Error: Command failed: pip3.12 install --disable-pip-version-check --target . --upgrade -r /vercel/path0/Scripts/problem2/requirements.txt
[01:24:34.549] ERROR: Exception:
[01:24:34.549] Traceback (most recent call last):
[01:24:34.549]   File "/python312/lib/python3.12/site-packages/pip/_internal/cli/base_command.py", line 180, in exc_logging_wrapper
[01:24:34.549]     status = run_func(*args)
[01:24:34.549]              ^^^^^^^^^^^^^^^
[01:24:34.549]   File "/python312/lib/python3.12/site-packages/pip/_internal/cli/req_command.py", line 245, in wrapper
[01:24:34.549]     return func(self, options, args)
[01:24:34.549]            ^^^^^^^^^^^^^^^^^^^^^^^^^
[01:24:34.549]   File "/python312/lib/python3.12/site-packages/pip/_internal/commands/install.py", line 377, in run
[01:24:34.549]     requirement_set = resolver.resolve(
[01:24:34.549]                       ^^^^^^^^^^^^^^^^^
[01:24:34.549]   File "/python312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py", line 95, in resolve
[01:24:34.549]     result = self._result = resolver.resolve(
[01:24:34.549]                             ^^^^^^^^^^^^^^^^^
[01:24:34.549]   File "/python312/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py", line 546, in resolve
[01:24:34.549]     state = resolution.resolve(requirements, max_rounds=max_rounds)
[01:24:34.549]             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[01:24:34.550]   File "/python312/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py", line 397, in resolve
[01:24:34.550]     self._add_to_criteria(self.state.criteria, r, parent=None)
[01:24:34.550]   File "/python312/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py", line 173, in _add_to_criteria
[01:24:34.550]     if not criterion.candidates:
[01:24:34.550]            ^^^^^^^^^^^^^^^^^^^^
[01:24:34.550]   File "/python312/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py", line 156, in __bool__
[01:24:34.550]     return bool(self._sequence)
[01:24:34.550]            ^^^^^^^^^^^^^^^^^^^^
[01:24:34.550]   File "/python312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py", line 155, in __bool__
[01:24:34.550]     return any(self)
[01:24:34.550]            ^^^^^^^^^
[01:24:34.550]   File "/python312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py", line 143, in <genexpr>
[01:24:34.550]     return (c for c in iterator if id(c) not in self._incompatible_ids)
[01:24:34.550]            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[01:24:34.550]   File "/python312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py", line 47, in _iter_built
[01:24:34.550]     candidate = func()
[01:24:34.550]                 ^^^^^^
[01:24:34.550]   File "/python312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py", line 182, in _make_candidate_from_link
[01:24:34.550]     base: Optional[BaseCandidate] = self._make_base_candidate_from_link(
[01:24:34.550]                                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[01:24:34.551]   File "/python312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py", line 228, in _make_base_candidate_from_link
[01:24:34.551]     self._link_candidate_cache[link] = LinkCandidate(
[01:24:34.551]                                        ^^^^^^^^^^^^^^
[01:24:34.551]   File "/python312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py", line 290, in __init__
[01:24:34.551]     super().__init__(
[01:24:34.551]   File "/python312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py", line 156, in __init__
[01:24:34.551]     self.dist = self._prepare()
[01:24:34.551]                 ^^^^^^^^^^^^^^^
[01:24:34.551]   File "/python312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py", line 222, in _prepare
[01:24:34.551]     dist = self._prepare_distribution()
[01:24:34.551]            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[01:24:34.551]   File "/python312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py", line 301, in _prepare_distribution
[01:24:34.551]     return preparer.prepare_linked_requirement(self._ireq, parallel_builds=True)
[01:24:34.551]            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[01:24:34.551]   File "/python312/lib/python3.12/site-packages/pip/_internal/operations/prepare.py", line 525, in prepare_linked_requirement
[01:24:34.551]     return self._prepare_linked_requirement(req, parallel_builds)
[01:24:34.551]            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[01:24:34.551]   File "/python312/lib/python3.12/site-packages/pip/_internal/operations/prepare.py", line 640, in _prepare_linked_requirement
[01:24:34.551]     dist = _get_prepared_distribution(
[01:24:34.551]            ^^^^^^^^^^^^^^^^^^^^^^^^^^^
[01:24:34.551]   File "/python312/lib/python3.12/site-packages/pip/_internal/operations/prepare.py", line 71, in _get_prepared_distribution
[01:24:34.551]     abstract_dist.prepare_distribution_metadata(
[01:24:34.552]   File "/python312/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py", line 54, in prepare_distribution_metadata
[01:24:34.552]     self._install_build_reqs(finder)
[01:24:34.552]   File "/python312/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py", line 124, in _install_build_reqs
[01:24:34.552]     build_reqs = self._get_build_requires_wheel()
[01:24:34.552]                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[01:24:34.552]   File "/python312/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py", line 101, in _get_build_requires_wheel
[01:24:34.552]     return backend.get_requires_for_build_wheel()
[01:24:34.552]            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[01:24:34.552]   File "/python312/lib/python3.12/site-packages/pip/_internal/utils/misc.py", line 745, in get_requires_for_build_wheel
[01:24:34.552]     return super().get_requires_for_build_wheel(config_settings=cs)
[01:24:34.552]            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[01:24:34.552]   File "/python312/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py", line 166, in get_requires_for_build_wheel
[01:24:34.552]     return self._call_hook('get_requires_for_build_wheel', {
[01:24:34.552]            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[01:24:34.552]   File "/python312/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py", line 321, in _call_hook
[01:24:34.552]     raise BackendUnavailable(data.get('traceback', ''))
[01:24:34.552] pip._vendor.pyproject_hooks._impl.BackendUnavailable: Traceback (most recent call last):
[01:24:34.553]   File "/python312/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py", line 77, in _build_backend
[01:24:34.553]     obj = import_module(mod_path)
[01:24:34.553]           ^^^^^^^^^^^^^^^^^^^^^^^
[01:24:34.554]   File "/python312/lib/python3.12/importlib/__init__.py", line 90, in import_module
[01:24:34.554]     return _bootstrap._gcd_import(name[level:], package, level)
[01:24:34.554]            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[01:24:34.554]   File "<frozen importlib._bootstrap>", line 1387, in _gcd_import
[01:24:34.554]   File "<frozen importlib._bootstrap>", line 1360, in _find_and_load
[01:24:34.554]   File "<frozen importlib._bootstrap>", line 1310, in _find_and_load_unlocked
[01:24:34.554]   File "<frozen importlib._bootstrap>", line 488, in _call_with_frames_removed
[01:24:34.554]   File "<frozen importlib._bootstrap>", line 1387, in _gcd_import
[01:24:34.554]   File "<frozen importlib._bootstrap>", line 1360, in _find_and_load
[01:24:34.554]   File "<frozen importlib._bootstrap>", line 1331, in _find_and_load_unlocked
[01:24:34.554]   File "<frozen importlib._bootstrap>", line 935, in _load_unlocked
[01:24:34.554]   File "<frozen importlib._bootstrap_external>", line 995, in exec_module
[01:24:34.555]   File "<frozen importlib._bootstrap>", line 488, in _call_with_frames_removed
[01:24:34.555]   File "/tmp/pip-build-env-nox80aq5/overlay/lib/python3.12/site-packages/setuptools/__init__.py", line 10, in <module>
[01:24:34.555]     import distutils.core
[01:24:34.555] ModuleNotFoundError: No module named 'distutils'
[01:24:34.555] 
[01:24:34.555] 
[01:24:34.555] Collecting anyio==3.7.1 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 1))
[01:24:34.555]   Downloading anyio-3.7.1-py3-none-any.whl.metadata (4.7 kB)
[01:24:34.555] Collecting argon2-cffi==21.3.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 2))
[01:24:34.555]   Downloading argon2_cffi-21.3.0-py3-none-any.whl.metadata (5.4 kB)
[01:24:34.555] Collecting argon2-cffi-bindings==21.2.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 3))
[01:24:34.555]   Downloading argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB)
[01:24:34.555] Collecting arrow==1.2.3 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 4))
[01:24:34.555]   Downloading arrow-1.2.3-py3-none-any.whl.metadata (6.9 kB)
[01:24:34.556] Collecting asgiref==3.8.1 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 5))
[01:24:34.556]   Downloading asgiref-3.8.1-py3-none-any.whl.metadata (9.3 kB)
[01:24:34.556] Collecting asttokens==2.2.1 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 6))
[01:24:34.556]   Downloading asttokens-2.2.1-py2.py3-none-any.whl.metadata (4.8 kB)
[01:24:34.556] Collecting async-lru==2.0.4 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 7))
[01:24:34.556]   Downloading async_lru-2.0.4-py3-none-any.whl.metadata (4.5 kB)
[01:24:34.556] Collecting attrs==23.1.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 8))
[01:24:34.556]   Downloading attrs-23.1.0-py3-none-any.whl.metadata (11 kB)
[01:24:34.556] Collecting Babel==2.12.1 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 9))
[01:24:34.556]   Downloading Babel-2.12.1-py3-none-any.whl.metadata (1.3 kB)
[01:24:34.556] Collecting backcall==0.2.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 10))
[01:24:34.556]   Downloading backcall-0.2.0-py2.py3-none-any.whl.metadata (2.0 kB)
[01:24:34.556] Collecting beautifulsoup4==4.11.2 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 11))
[01:24:34.556]   Downloading beautifulsoup4-4.11.2-py3-none-any.whl.metadata (3.5 kB)
[01:24:34.557] Collecting bleach==6.0.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 12))
[01:24:34.557]   Downloading bleach-6.0.0-py3-none-any.whl.metadata (29 kB)
[01:24:34.557] Collecting category-encoders==2.6.1 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 13))
[01:24:34.557]   Downloading category_encoders-2.6.1-py2.py3-none-any.whl.metadata (7.9 kB)
[01:24:34.557] Collecting certifi==2023.5.7 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 14))
[01:24:34.557]   Downloading certifi-2023.5.7-py3-none-any.whl.metadata (2.2 kB)
[01:24:34.557] Collecting cffi==1.15.1 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 15))
[01:24:34.557]   Downloading cffi-1.15.1.tar.gz (508 kB)
[01:24:34.557]      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 508.5/508.5 kB 99.1 MB/s eta 0:00:00
[01:24:34.557]   Installing build dependencies: started
[01:24:34.557]   Installing build dependencies: finished with status 'done'
[01:24:34.557]   Getting requirements to build wheel: started
[01:24:34.557]   Getting requirements to build wheel: finished with status 'done'
[01:24:34.557]   Preparing metadata (pyproject.toml): started
[01:24:34.557]   Preparing metadata (pyproject.toml): finished with status 'done'
[01:24:34.557] Collecting charset-normalizer==3.1.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 16))
[01:24:34.557]   Downloading charset_normalizer-3.1.0-py3-none-any.whl.metadata (30 kB)
[01:24:34.558] Collecting colorama==0.4.6 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 17))
[01:24:34.558]   Downloading colorama-0.4.6-py2.py3-none-any.whl.metadata (17 kB)
[01:24:34.558] Collecting comm==0.1.4 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 18))
[01:24:34.558]   Downloading comm-0.1.4-py3-none-any.whl.metadata (4.2 kB)
[01:24:34.558] Collecting contourpy==1.0.7 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 19))
[01:24:34.558]   Downloading contourpy-1.0.7.tar.gz (13.4 MB)
[01:24:34.558]      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.4/13.4 MB 96.5 MB/s eta 0:00:00
[01:24:34.558]   Installing build dependencies: started
[01:24:34.558]   Installing build dependencies: finished with status 'done'
[01:24:34.558]   Getting requirements to build wheel: started
[01:24:34.558]   Getting requirements to build wheel: finished with status 'done'
[01:24:34.558]   Preparing metadata (pyproject.toml): started
[01:24:34.558]   Preparing metadata (pyproject.toml): finished with status 'done'
[01:24:34.558] Collecting cycler==0.11.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 20))
[01:24:34.558]   Downloading cycler-0.11.0-py3-none-any.whl.metadata (785 bytes)
[01:24:34.558] Collecting debugpy==1.6.7.post1 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 21))
[01:24:34.558]   Downloading debugpy-1.6.7.post1-py2.py3-none-any.whl.metadata (1.1 kB)
[01:24:34.558] Collecting decorator==5.1.1 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 22))
[01:24:34.558]   Downloading decorator-5.1.1-py3-none-any.whl.metadata (4.0 kB)
[01:24:34.558] Collecting defusedxml==0.7.1 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 23))
[01:24:34.558]   Downloading defusedxml-0.7.1-py2.py3-none-any.whl.metadata (32 kB)
[01:24:34.558] Collecting distlib==0.3.6 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 24))
[01:24:34.558]   Downloading distlib-0.3.6-py2.py3-none-any.whl.metadata (5.1 kB)
[01:24:34.558] Collecting Django==5.1.4 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 25))
[01:24:34.558]   Downloading Django-5.1.4-py3-none-any.whl.metadata (4.2 kB)
[01:24:34.558] Collecting djangorestframework==3.15.2 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 26))
[01:24:34.558]   Downloading djangorestframework-3.15.2-py3-none-any.whl.metadata (10 kB)
[01:24:34.558] Collecting djangorestframework-simplejwt==5.3.1 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 27))
[01:24:34.558]   Downloading djangorestframework_simplejwt-5.3.1-py3-none-any.whl.metadata (4.3 kB)
[01:24:34.558] Collecting docker==7.1.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 28))
[01:24:34.558]   Downloading docker-7.1.0-py3-none-any.whl.metadata (3.8 kB)
[01:24:34.558] Collecting executing==1.2.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 29))
[01:24:34.558]   Downloading executing-1.2.0-py2.py3-none-any.whl.metadata (8.9 kB)
[01:24:34.559] Collecting fastjsonschema==2.18.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 30))
[01:24:34.559]   Downloading fastjsonschema-2.18.0-py3-none-any.whl.metadata (2.0 kB)
[01:24:34.559] Collecting filelock==3.9.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 31))
[01:24:34.559]   Downloading filelock-3.9.0-py3-none-any.whl.metadata (2.3 kB)
[01:24:34.559] Collecting fonttools==4.38.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 32))
[01:24:34.559]   Downloading fonttools-4.38.0-py3-none-any.whl.metadata (138 kB)
[01:24:34.559]      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 138.5/138.5 kB 57.5 MB/s eta 0:00:00
[01:24:34.559] Collecting fqdn==1.5.1 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 33))
[01:24:34.559]   Downloading fqdn-1.5.1-py3-none-any.whl.metadata (1.4 kB)
[01:24:34.559] Collecting fsspec==2024.3.1 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 34))
[01:24:34.559]   Downloading fsspec-2024.3.1-py3-none-any.whl.metadata (6.8 kB)
[01:24:34.559] Collecting huggingface-hub==0.22.2 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 35))
[01:24:34.559]   Downloading huggingface_hub-0.22.2-py3-none-any.whl.metadata (12 kB)
[01:24:34.559] Collecting idna==3.4 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 36))
[01:24:34.559]   Downloading idna-3.4-py3-none-any.whl.metadata (9.8 kB)
[01:24:34.559] Collecting ipykernel==6.25.1 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 37))
[01:24:34.559]   Downloading ipykernel-6.25.1-py3-none-any.whl.metadata (6.3 kB)
[01:24:34.559] Collecting ipython==8.14.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 38))
[01:24:34.559]   Downloading ipython-8.14.0-py3-none-any.whl.metadata (5.8 kB)
[01:24:34.559] Collecting ipython-genutils==0.2.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 39))
[01:24:34.559]   Downloading ipython_genutils-0.2.0-py2.py3-none-any.whl.metadata (755 bytes)
[01:24:34.559] Collecting ipywidgets==8.1.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 40))
[01:24:34.559]   Downloading ipywidgets-8.1.0-py3-none-any.whl.metadata (2.4 kB)
[01:24:34.559] Collecting isoduration==20.11.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 41))
[01:24:34.559]   Downloading isoduration-20.11.0-py3-none-any.whl.metadata (5.7 kB)
[01:24:34.559] Collecting jedi==0.19.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 42))
[01:24:34.559]   Downloading jedi-0.19.0-py2.py3-none-any.whl.metadata (22 kB)
[01:24:34.559] Collecting Jinja2==3.1.2 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 43))
[01:24:34.559]   Downloading Jinja2-3.1.2-py3-none-any.whl.metadata (3.5 kB)
[01:24:34.559] Collecting joblib==1.3.1 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 44))
[01:24:34.559]   Downloading joblib-1.3.1-py3-none-any.whl.metadata (5.4 kB)
[01:24:34.559] Collecting json5==0.9.14 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 45))
[01:24:34.559]   Downloading json5-0.9.14-py2.py3-none-any.whl.metadata (10 kB)
[01:24:34.559] Collecting jsonpointer==2.4 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 46))
[01:24:34.559]   Downloading jsonpointer-2.4-py2.py3-none-any.whl.metadata (2.5 kB)
[01:24:34.559] Collecting jsonschema==4.19.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 47))
[01:24:34.559]   Downloading jsonschema-4.19.0-py3-none-any.whl.metadata (8.2 kB)
[01:24:34.559] Collecting jsonschema-specifications==2023.7.1 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 48))
[01:24:34.559]   Downloading jsonschema_specifications-2023.7.1-py3-none-any.whl.metadata (2.8 kB)
[01:24:34.559] Collecting jupyter==1.0.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 49))
[01:24:34.559]   Downloading jupyter-1.0.0-py2.py3-none-any.whl.metadata (995 bytes)
[01:24:34.559] Collecting jupyter-console==6.6.3 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 50))
[01:24:34.559]   Downloading jupyter_console-6.6.3-py3-none-any.whl.metadata (5.8 kB)
[01:24:34.559] Collecting jupyter-events==0.7.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 51))
[01:24:34.559]   Downloading jupyter_events-0.7.0-py3-none-any.whl.metadata (5.5 kB)
[01:24:34.559] Collecting jupyter-lsp==2.2.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 52))
[01:24:34.559]   Downloading jupyter_lsp-2.2.0-py3-none-any.whl.metadata (1.8 kB)
[01:24:34.559] Collecting jupyter_client==8.3.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 53))
[01:24:34.559]   Downloading jupyter_client-8.3.0-py3-none-any.whl.metadata (8.5 kB)
[01:24:34.560] Collecting jupyter_core==5.3.1 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 54))
[01:24:34.560]   Downloading jupyter_core-5.3.1-py3-none-any.whl.metadata (3.4 kB)
[01:24:34.560] Collecting jupyter_server==2.7.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 55))
[01:24:34.560]   Downloading jupyter_server-2.7.0-py3-none-any.whl.metadata (8.6 kB)
[01:24:34.560] Collecting jupyter_server_terminals==0.4.4 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 56))
[01:24:34.560]   Downloading jupyter_server_terminals-0.4.4-py3-none-any.whl.metadata (6.3 kB)
[01:24:34.560] Collecting jupyterlab==4.0.4 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 57))
[01:24:34.560]   Downloading jupyterlab-4.0.4-py3-none-any.whl.metadata (15 kB)
[01:24:34.560] Collecting jupyterlab-pygments==0.2.2 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 58))
[01:24:34.560]   Downloading jupyterlab_pygments-0.2.2-py2.py3-none-any.whl.metadata (1.9 kB)
[01:24:34.560] Collecting jupyterlab-widgets==3.0.8 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 59))
[01:24:34.560]   Downloading jupyterlab_widgets-3.0.8-py3-none-any.whl.metadata (4.1 kB)
[01:24:34.560] Collecting jupyterlab_server==2.24.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 60))
[01:24:34.560]   Downloading jupyterlab_server-2.24.0-py3-none-any.whl.metadata (5.8 kB)
[01:24:34.560] Collecting kiwisolver==1.4.4 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 61))
[01:24:34.560]   Downloading kiwisolver-1.4.4.tar.gz (97 kB)
[01:24:34.560]      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 97.1/97.1 kB 41.2 MB/s eta 0:00:00
[01:24:34.560]   Installing build dependencies: started
[01:24:34.560]   Installing build dependencies: finished with status 'done'
[01:24:34.560]   Getting requirements to build wheel: started
[01:24:34.561]   Getting requirements to build wheel: finished with status 'done'
[01:24:34.561]   Preparing metadata (pyproject.toml): started
[01:24:34.561]   Preparing metadata (pyproject.toml): finished with status 'done'
[01:24:34.561] Collecting MarkupSafe==2.1.3 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 62))
[01:24:34.561]   Downloading MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.9 kB)
[01:24:34.561] Collecting matplotlib==3.6.3 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 63))
[01:24:34.561]   Downloading matplotlib-3.6.3.tar.gz (35.9 MB)
[01:24:34.561]      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 35.9/35.9 MB 64.4 MB/s eta 0:00:00
[01:24:34.561]   Installing build dependencies: started
[01:24:34.561]   Installing build dependencies: finished with status 'done'
[01:24:34.561]   Getting requirements to build wheel: started
[01:24:34.561]   Getting requirements to build wheel: finished with status 'done'
[01:24:34.561]   Installing backend dependencies: started
[01:24:34.561]   Installing backend dependencies: finished with status 'done'
[01:24:34.561]   Preparing metadata (pyproject.toml): started
[01:24:34.561]   Preparing metadata (pyproject.toml): finished with status 'done'
[01:24:34.561] Collecting matplotlib-inline==0.1.6 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 64))
[01:24:34.561]   Downloading matplotlib_inline-0.1.6-py3-none-any.whl.metadata (2.8 kB)
[01:24:34.561] Collecting mistune==3.0.1 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 65))
[01:24:34.561]   Downloading mistune-3.0.1-py3-none-any.whl.metadata (1.7 kB)
[01:24:34.561] Collecting mlxtend==0.23.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 66))
[01:24:34.561]   Downloading mlxtend-0.23.0-py3-none-any.whl.metadata (7.3 kB)
[01:24:34.562] Collecting mpmath==1.3.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 67))
[01:24:34.562]   Downloading mpmath-1.3.0-py3-none-any.whl.metadata (8.6 kB)
[01:24:34.562] Collecting mysql-connector-python==8.0.32 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 68))
[01:24:34.562]   Downloading mysql_connector_python-8.0.32-py2.py3-none-any.whl.metadata (1.8 kB)
[01:24:34.562] Collecting nbclient==0.8.0 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 69))
[01:24:34.562]   Downloading nbclient-0.8.0-py3-none-any.whl.metadata (7.8 kB)
[01:24:34.562] Collecting nbconvert==7.7.3 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 70))
[01:24:34.562]   Downloading nbconvert-7.7.3-py3-none-any.whl.metadata (8.0 kB)
[01:24:34.562] Collecting nbformat==5.9.2 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 71))
[01:24:34.562]   Downloading nbformat-5.9.2-py3-none-any.whl.metadata (3.4 kB)
[01:24:34.562] Collecting nest-asyncio==1.5.7 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 72))
[01:24:34.562]   Downloading nest_asyncio-1.5.7-py3-none-any.whl.metadata (2.7 kB)
[01:24:34.562] Collecting networkx==3.2.1 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 73))
[01:24:34.562]   Downloading networkx-3.2.1-py3-none-any.whl.metadata (5.2 kB)
[01:24:34.562] Collecting notebook==7.0.2 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 74))
[01:24:34.562]   Downloading notebook-7.0.2-py3-none-any.whl.metadata (10 kB)
[01:24:34.562] Collecting notebook_shim==0.2.3 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 75))
[01:24:34.562]   Downloading notebook_shim-0.2.3-py3-none-any.whl.metadata (4.0 kB)
[01:24:34.562] Collecting numpy==1.24.2 (from -r /vercel/path0/Scripts/problem2/requirements.txt (line 76))
[01:24:34.562]   Downloading numpy-1.24.2.tar.gz (10.9 MB)
[01:24:34.562]      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.9/10.9 MB 118.5 MB/s eta 0:00:00
[01:24:34.562]   Installing build dependencies: started
[01:24:34.562]   Installing build dependencies: finished with status 'done'
[01:24:34.562]   Getting requirements to build wheel: started
[01:24:34.562]   Getting requirements to build wheel: finished with status 'done'
[01:24:34.563] 
[01:24:34.800] 

Thank you for notifying my mistake and suggesting the correct way to post my doubts.

If you find the solution to this error please share your suggestion and I am grateful for your reply.

There’s the cause of your error. You’ll want to install this before installing the packages in your requirements.txt file.