You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 5, 2024. It is now read-only.
Hi I am using vagrant and virtual box for a webserver. Inside the box when I run pip install -r requirements.txt with an entry diff-match-patch==20181111. It will error:
distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('setuptools>=38.6.0')
----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/f0/2a/5ba07def0e9107d935aba62cf632afbd0f7c723a98af47ccbcab753d2452/diff-match-patch-20181111.tar.gz#sha256=a809a996d0f09b9bbd59e9bbd0b71eed8c807922512910e05cbd3f9480712ddb (from https://pypi.org/simple/diff-match-patch/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
ERROR: Could not find a version that satisfies the requirement diff-match-patch==20181111 (from versions: 20110725, 20110725.1, 20120106, 20121119, 20181111, 20200713)
ERROR: No matching distribution found for diff-match-patch==20181111
If I update it to 20200713, pip will try to "find" compatible version of packages:
Collecting setuptools
Downloading setuptools-56.2.0-py3-none-any.whl (785 kB)
|████████████████████████████████| 785 kB 6.0 MB/s
INFO: pip is looking at multiple versions of tablib to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of paramiko to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of openpyxl to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of opencv-python to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of olefile to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of odfpy to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of oauthlib to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of numpy to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of nose to determine which version is compatible with other requirements. This could take a while.
I am not sure if its compatibility issues with setuptools
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi I am using vagrant and virtual box for a webserver. Inside the box when I run
pip install -r requirements.txt
with an entrydiff-match-patch==20181111
. It will error:If I update it to
20200713
, pip will try to "find" compatible version of packages:I am not sure if its compatibility issues with
setuptools
The text was updated successfully, but these errors were encountered: