zhuzhuzai

Results 20 issues of zhuzhuzai

## 描述 在requirements.txt中有两个依赖==0.0.27`和`requests-html==0.9.0`。而`requests-html==0.9.0`又依赖于pyppeteer`。这两个包存在模块冲突(他们都使用了pyppeteer的namespace,但是一些文件内容不相同。比如:`pyppeteer/launcher.py`, `pyppeteer/chromium_downloader.py`)。安装`pyppeteer-box`时在site-packages文件夹中(安装第三方软件包的默认文件夹)会安装pyppeteer模块。随后再安装`pyppeteer`包时(同样存在cv2模块),会将`pyppeteer-box`包的pyppeteer模块覆盖。值得注意的是这两个包中的cv2文件夹内有些模块文件并不相同。 ## 复现 pip install -r requirements.txt ## 修改 我不确定这种覆盖问题会对本项目造成什么样的影响,因为它可能会隐藏在深层的调用链中,实际它已经被覆盖了. 所以覆盖行为肯定会发生。虽然本项目只能处理直接依赖,而间接依赖发生的模块冲突也确实没有什么好的解决办法。并且这样的冲突也可能没有确切的影响。因为不一定调用了pyppeteer模块中相互覆盖的那部分。所以也请确认后麻烦给我回复一个确认该覆盖行为的commits。

## Background Dependencies in `requirements.txt` have module conflicts. ## Description There are two dependencies mentioned in the `requirements.txt` file: `ffmpeg-python` and `ffmpeg`. There is a module conflict between these two...

## Background Dependencies in `requirements.txt` have module conflicts. ## Description There is a dependency mentioned in the `requirements.txt` file: `tensorflow` and `tensorflow-gpu`. These two packages are both built from the...

I have installed 'pdfminer.six' in my local *venv*. there is 'pdfminer' in the dependencies of another project I installed named 'docassemble-base'. The later installation of 'pdfminer' seems to have overwritten...

## 描述 在requirements.txt中有两个依赖websocket和websocket-client。这两个包存在模块冲突。安装websocket时在site-packages文件夹中(安装第三方软件包的默认文件夹)会安装`websocket/__init__.py`模块。随后再安装websocket-client包时(同样存在`websocket/__init__.py`模块),会将websocket包的`websocket/__init__.py`模块覆盖。值得注意的是这两个包中的该模块文件内容并不相同。 ## 复现 pip install -r requirements.txt ## 修改 我不确定这种覆盖问题会对本项目造成什么样的影响,因为它可能会隐藏在深层的调用链中,至少是想要import websocket模块时,实际它已经被覆盖了。例如你想调用websocket包中的`websocket/__init__.py`模块, 然而由于它被覆盖了,于是调用的是websocket-client包的`websocket/__init__.py`模块。所以覆盖行为肯定会发生。并且这样的冲突也可能没有确切的影响。因为不一定import websocket。所以也请确认后麻烦给我回复一个确认该覆盖行为的commits。对于本项目代码我不是很熟悉,但是我想应该可以删除其中一个依赖来解决可能发生的威胁。

bug

## Background Dependencies in `requirements.txt` have module conflicts. ### Description There are two dependencies mentioned in the `requirements.txt` file: aliyun-python-sdk-core and aliyun-python-sdk-core-v3. Without knowing their specific differences, it’s certain that...

## 描述 在requirements.txt中有两个依赖pymongo和bson。这两个包存在模块冲突。安装pymongo时在site-packages文件夹中(安装第三方软件包的默认文件夹)会安装bson模块。随后再安装bson包时(同样存在bson模块),会将pymongo包的bson模块覆盖。值得注意的是这两个包中的bson模块有些文件并不相同。 ## 复现 pip install -r requirements.txt ## 修改 我不确定这种覆盖问题会对本项目造成什么样的影响,因为它可能会隐藏在深层的调用链中,至少是想要call pymongo的bson模块时,实际它已经被覆盖了,于是调用的是bson的bson模块。所以覆盖行为肯定会发生。如果即使对本项目没影响,也请确认后麻烦给我回复一个确认该行为的commits。

## Background Dependencies in `requirements.txt` have module conflicts. ## Description There are two dependencies mentioned in the `requirements.txt` file: `faiss-cpu` and `faiss-gpu`. Based on my knowledge, these two packages have...

I used `pip install jupyter` to install the project and its dependencies. It installed `jupyter==1.0.0` and `jupyter-core==5.3.0` for me. Both dependencies have the same path of the module `/jupyter.py` with...

## Background Dependencies in `requirements.txt` have module conflicts. ## Description There are two dependencies mentioned in the `requirements.txt` file: `mkl-random==1.0.1` and `numpy==1.16.4` and the 'mkl-random==1.0.1' depends on `intel-numpy (=1.14)`. To...