无法在 jython 中安装请求

unable to install requests in jython

我已经通过

安装了 pip

java -jar jython-standalone-2.7.2.jar -m ensurepip

命令,但是当我尝试通过 jython 安装请求时,它显示以下错误

java -jar jython-standalone-2.7.2.jar -m pip install requests
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by org.python.core.io.StreamIO (file:/home/bugcracker/burp_dev/jython-standalone-2.7.2.jar) to field java.io.FilterOutputStream.out
WARNING: Please consider reporting this to the maintainers of org.python.core.io.StreamIO
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
DEPRECATION: A future version of pip will drop support for Python 2.7.
Collecting requests
  ERROR: Could not find a version that satisfies the requirement requests (from versions: none)
ERROR: No matching distribution found for requests


official repo 下载 requests-2.25.1.tar.gz,然后在终端中转到该目录, 并键入以下命令:

java -jar <path-to-jython-standalone-2.7.2.jar> setup.py install

这将在 jython 中安装请求。