Hi every one
i have a problem with pants
in my requirements.txt i have this row:
requests>=2.28.1,<2.29.0
and after run this command ./pants lint ::
i see this error:
FileNotFoundError:
[Errno 2] No such file or directory:
'/home/user/.cache/pants/named_caches/pex_root/installed_wheel_zips/bd5fbf4ad4e1d61ce4de27aeb31e0ba74111cd5869ffb0ad8f6e0caa99719d4d/requests-2.28.2-py3-none-any.13890.whl'
->
'python-default_lockfile.pex.af498f1e5a5348c9b8174711f5cc4da9/app/.deps/requests-2.28.2-py3-none-any.13890.whl'
in that path only exist requests-2.28.2-py3-none-any.whl while pants looks for the file called requests-2.28.2-py3-none-any.13890.whl in that path.
How can I solve this problem? (edited)