Hello! When I was trying to set up the environment in our Ubuntu server, I got the following error report:
ERROR: Could not find a version that satisfies the requirement textwrap (from versions: none)
ERROR: No matching distribution found for textwrap
System Environment:
Ubuntu 22.04.4 LTS
Python 3.10 installed by Miniconda
It seems that the correct version compatible with Python 3.10 is textwrap3.
I‘m posting the issue for clearance. Since I'm unfamiliar with this package, I don't know whether the two packages, textwrap and textwrap3 are completely equivalent. But after I had replaced textwrap in requirements.txt with textwrap3, the script ran well without error.
Hello! When I was trying to set up the environment in our Ubuntu server, I got the following error report:
System Environment:
It seems that the correct version compatible with Python 3.10 is
textwrap3.I‘m posting the issue for clearance. Since I'm unfamiliar with this package, I don't know whether the two packages,
textwrapandtextwrap3are completely equivalent. But after I had replacedtextwrapinrequirements.txtwithtextwrap3, the script ran well without error.