question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

pip release 0.6.2 ModuleNotFoundError

See original GitHub issue

I 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:closed
  • Created 5 years ago
  • Comments:6 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
brianhiecommented, Dec 17, 2018

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

1reaction
brianhiecommented, Dec 17, 2018

@alex-wenzel Oops sorry! Fixed in 0.7

Ample is an experimental package that we hope to unveil soon 😃

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found