pip release 0.6.2 ModuleNotFoundError
See original GitHub issueI used pip to install scanorama version 0.6.2 and ran
import scanorama
with Python 3.6, which resulted in
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-1-4ea9f8d58e85> in <module>()
----> 1 import scanorama
/opt/conda/lib/python3.6/site-packages/scanorama/__init__.py in <module>()
----> 1 from .scanorama import *
/opt/conda/lib/python3.6/site-packages/scanorama/scanorama.py in <module>()
15
16 from .t_sne_approx import TSNEApprox
---> 17 from .integration import harmony_integrate
18 from .utils import plt, dispersion, reduce_dimensionality
19 from .utils import visualize_cluster, visualize_expr, visualize_dropout
/opt/conda/lib/python3.6/site-packages/scanorama/integration.py in <module>()
----> 1 from ample import gs, uniform, srs, kmeanspp
2 import numpy as np
3 from subprocess import Popen
4 from time import time
5
ModuleNotFoundError: No module named 'ample'
Google searches aren’t immediately showing what the “ample” module might be - is it misspelled? Uninstalling and reverting to version 0.6 fixes this issue. Let me know if I can provide any more information.
Issue Analytics
- State:
- Created 5 years ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
Python module not found even though "Requirement Already ...
Run in command prompt. pip list. Check what version you have installed on your system if you have an old version.
Read more >implicit - PyPI
implicit 0.6.2. pip install implicit ... Released: Dec 10, 2022 ... This library requires SciPy version 0.16 or later and Python version 3.6...
Read more >Installation — ADTK 0.6.2 documentation - Read the Docs
Prerequisites: Python 3.5 or later. It is recommended to install the most recent stable release of ADTK from PyPI. $ pip install adtk....
Read more >Changelog - pip documentation v22.3.1
Fix pip install --pre for packages with pre-release build dependencies ... Explains why specified version cannot be retrieved when Requires-Python is not ...
Read more >Installation Guide — MONAI 1.1.0 Documentation
(If you have installed the PyPI release version using pip install monai , please run pip uninstall monai before using the commands from...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Yikes, looks like a problem with intervaltree v3, try installing intervaltree==2.1.0 and then installing scanorama? I’ll look into modifying the dependencies in setup.py as well
@alex-wenzel Oops sorry! Fixed in 0.7
Ample is an experimental package that we hope to unveil soon 😃