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
Can't get Semantic@ running on Windows. When I'm trying to install required packages from requirements.txt in a new environment, some of them have conflicting dependencies:
ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
transkribus-client 0.3.3 requires lxml==4.6.3, but you have lxml 4.8.0 which is incompatible.
transkribus-client 0.3.3 requires requests==2.28.1, but you have requests 2.27.1 which is incompatible.
spyder 5.1.5 requires pylint<2.10.0,>=2.5.0, but you have pylint 2.13.8 which is incompatible.
pydantic-core 2.3.0 requires typing-extensions!=4.7.0,>=4.6.0, but you have typing-extensions 4.2.0 which is incompatible.
doccano 1.8.4 requires pydantic<3.0.0,>=2.0.3, but you have pydantic 1.8.2 which is incompatible.
I tried to resolve some of these conflicts manually by upgrading/downgrading packages mentioned in the traceback above. In the end, it boiled down to different libraries requiring different versions of pydantic.
ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
doccano 1.8.4 requires pydantic<3.0.0,>=2.0.3, but you have pydantic 1.8.2 which is incompatible.
When I upgrage pydantic, it becomes incompatible with other required packages.
ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
thinc 8.0.15 requires pydantic!=1.8,!=1.8.1,<1.9.0,>=1.7.4, but you have pydantic 2.0.3 which is incompatible.
spacy 3.3.0 requires pydantic!=1.8,!=1.8.1,<1.9.0,>=1.7.4, but you have pydantic 2.0.3 which is incompatible.
confection 0.0.2 requires pydantic!=1.8,!=1.8.1,<1.10.0,>=1.7.4, but you have pydantic 2.0.3 which is incompatible.
In both cases, python run.py doesn't work because of different pydantic errors.
Although there were no problems installing the versions of lxml, requests, pylint and typing-extentions mentioned in the first traceback, they might be contributing to errors too, because pip picked them up as conflicts in the frst place.
The text was updated successfully, but these errors were encountered:
Can't get Semantic@ running on Windows. When I'm trying to install required packages from
requirements.txt
in a new environment, some of them have conflicting dependencies:I tried to resolve some of these conflicts manually by upgrading/downgrading packages mentioned in the traceback above. In the end, it boiled down to different libraries requiring different versions of
pydantic
.When I upgrage
pydantic
, it becomes incompatible with other required packages.In both cases,
python run.py
doesn't work because of differentpydantic
errors.Although there were no problems installing the versions of
lxml
,requests
,pylint
andtyping-extentions
mentioned in the first traceback, they might be contributing to errors too, becausepip
picked them up as conflicts in the frst place.The text was updated successfully, but these errors were encountered: