-
Notifications
You must be signed in to change notification settings - Fork 1
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
numpy not installed as a requirement #2
Comments
Hi James, |
I only have 0.0.8 installed. I labelled the directory 0.0.9.1 because that's what I expected to install when I used this: Even though 0.0.9.1 is listed at pypi and in the github repo, it still only installs 0.0.8. If scAllele requires numpy (and other packages) then it should be a requirement with the pip install. If not that then it should be listed in the install documentation. |
scipy is also required but not installed by pip. |
Both scipy and numpy are listed as requirements in the setup. |
After specifying version 0.0.9.1 with the pip install I now get unsatisfiable errors: Downloading https://test-files.pythonhosted.org/packages/b5/04/f9fcd7b453139cab2d65f71750565b79ac389a73bf3b5fd6c731a6f1e81f/scAllele-0.0.9.1-py3-none-any.whl (45 kB) I am using python 3.7.12: |
I didn't know. but the version that gets downloaded from test pipy is 0.0.8. This is a bug on their side because version 0.0.9.1 is clearly present and labeled as the latest one. I will try to resolve this as soon as possible. |
Installation of requirements.txt using pip directly fails because of missing libbzip2 `Collecting pysam>=0.9.1 × python setup.py egg_info did not run successfully.
note: This error originates from a subprocess, and is likely not a problem with pip. × Encountered error while generating package metadata. note: This is an issue with the package mentioned above, not pip. |
After installing libdeflate and bzip2 get an error in requirements.txt not being able to find satisfactory version. Could you perhaps post the exact environment you are using? I am starting with a conda install of python 3.7.12.
|
pip install of scallele does not install numpy in python:
Traceback (most recent call last): File "/programs/x86_64-linux//scallele/0.0.9.1/bin/scAllele", line 5, in <module> from scAllele.gqv import main File "/programs/x86_64-linux/scallele/0.0.9.1/lib/python3.10/site-packages/scAllele/gqv.py", line 14, in <module> from . import gqv_utils File "/programs/x86_64-linux/scallele/0.0.9.1/lib/python3.10/site-packages/scAllele/gqv_utils.py", line 5, in <module> import numpy as np ; np.seterr(all = "ignore") ModuleNotFoundError: No module named 'numpy'
Installation according to instructions:
./python -m pip install -i https://test.pypi.org/simple/ scAllele
./pip list | grep scAllele
scAllele 0.0.8
The text was updated successfully, but these errors were encountered: