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
Describe the bug
After installation of tigrisdb in env it installs a make script which is then installed in conda /bin env, leading to unable to correctly use make tool to build thing or run automation tasks in the virtual env.
It also means that any user of tigrisdb won't be able to build&install other python packages if their build system rely on make command in this default setup.
To Reproduce
Steps to reproduce the behavior:
create new conda env
install tigrisdb
See that in conda env bin/ directory there is make script.
It can be also validated (copied from @jedi4ever 's message from langchain issue thread) pip list | tail -n +3 | cut -d" " -f1 | xargs pip show -f
and then grep for bin/make`:
Expected behavior ../../../bin/make should not be installed as part of tigrisdb OR should be installed in a collision-free way. make should execute command https://linux.die.net/man/1/make
Desktop (please complete the following information):
OS: ubuntu
Version 22
Additional context
Content of this file:
#!/home/<redacted>/.miniconda3/envs/langchain/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from scripts.proto import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())
Describe the bug
After installation of
tigrisdb
in env it installs amake
script which is then installed in conda /bin env, leading to unable to correctly use make tool to build thing or run automation tasks in the virtual env.It also means that any user of tigrisdb won't be able to build&install other python packages if their build system rely on make command in this default setup.
To Reproduce
Steps to reproduce the behavior:
make
script.It can be also validated (copied from @jedi4ever 's message from langchain issue thread)
pip list | tail -n +3 | cut -d" " -f1 | xargs pip show -f
and then grep for bin/make`:
Expected behavior
../../../bin/make
should not be installed as part of tigrisdb OR should be installed in a collision-free way.make should execute command https://linux.die.net/man/1/make
Desktop (please complete the following information):
Additional context
Content of this file:
Example issues raised in langchain if you need additional context:
langchain-ai/langchain#6182
langchain-ai/langchain#6915
& more.
The text was updated successfully, but these errors were encountered: