-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow installation of embedPy alongside PyQ #30
Comments
@jhanna-kx, @effbiae - what do you think of this plan? Do you think having emdedPy pip installable independently from PyQ is something of interest? |
Yes, but it relies on distutils/setuptools and the logic in the setup.py file to achieve that. Try
to watch how
No. Pip is a package manager, not a build tool. In Python 3, distutils gives you full access to everything in the python's own (autoconf-generated) Makefile, which is likely more than you would ever want to know. On the other hand, I am currently experimenting with conda (the package manager for the Anaconda Python distribution) and I think it deserves a serious consideration. Apart from being very popular among data scientists, conda has the following advantages over pip:
/cc: @effbiae |
TODO: Make numpy optional in embedPy.
TODO: Make numpy optional in embedPy.
TODO: Make numpy optional in embedPy.
pip install pyq installs embedPy if its requirements are met: Python 3 with numpy. |
Hi, I'm trying to run pyq alongside embedPy but I get the following error:
I'm not clear if this issue has been resolved. If has, could you provide steps on how to get both these items to be working together? |
@thomas-kunnumpurath please open new issue. |
Currently, both PyQ and embedPy install
p.so
inQHOME
and this name conflict means that users cannot use both in the same kdb+ instance.Why would users want to have both PyQ and embedPy? While the two projects provide some overlapping functionality, PyQ is primarily focused on accessing kdb+ data from Python while embedPy has more features for q programers to call Python functions.
Implementation plan
p.so
in PyQ topyq.so
pip install pyq[embedpy]
The text was updated successfully, but these errors were encountered: