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
I try to install your project using Pip. I found that your project will depend on the project "PyKotor==1.5.4". After installing the dependencies, some of the files in your project will overwrite some of the files in PyKotor. This includes mainly the modules in the "pykotor" root directory and the "venv" root directory.
The text was updated successfully, but these errors were encountered:
I assume you meant that you tried to install PyKotorGL? All of PyKotorGL's modules are under /pykotor/gl/ so there shouldnt be any actual overlap occuring.
In fact, I think it would be a packaging issue. You uploaded the PyKotorGL-1.2.1-py3-none-any.whl file includes files like pykotor/gl/scene.py, and venv/ .etc. PyKotorGL also depends on PyKotor, and PyKotor's packaging file PyKotor-1.6.2-py3-none-any.whl also includes pykotor/gl/scene.py and other venv/ files. Therefore, in the process of installing PyKotorGL, pip will install the dependency packages first (i.e. [email protected]), then install [email protected]. During this process, it is the conflicting modules are overwritten. It can be noticed that the contents of the files in these two packages are not the same, so there might be a functionality problem.
I try to install your project using Pip. I found that your project will depend on the project "PyKotor==1.5.4". After installing the dependencies, some of the files in your project will overwrite some of the files in PyKotor. This includes mainly the modules in the "pykotor" root directory and the "venv" root directory.
The text was updated successfully, but these errors were encountered: