Installed as described, but "No module named 'falcon'"
See original GitHub issueThe install looks ok:
Successfully installed Unidecode-0.4.20 audioread-2.1.5 cycler-0.10.0 decorator-4.2.1 falcon-1.2.0 inflect-0.2.5 joblib-0.11 librosa-0.5.1 llvmlite-0.22.0 matplotlib-2.0.2 numba-0.37.0 numpy-1.13.0 pyparsing-2.2.0 python-dateutil-2.7.1 python-mimeparse-1.6.0 pytz-2018.3 resampy-0.2.0 scikit-learn-0.19.1 scipy-0.19.0 tqdm-4.11.2
But if I want to start the demo:
munsch@Metis ~/Downloads/tacotron $ python3 demo_server.py --checkpoint /tmp/tacotron-20170720/model.ckpt
Traceback (most recent call last):
File "demo_server.py", line 2, in <module>
import falcon
ModuleNotFoundError: No module named 'falcon'
Issue Analytics
- State:
- Created 5 years ago
- Comments:7
Top Results From Across the Web
falcon module installed but not being detected - Stack Overflow
Your pip most likely targets a different Python version's site-packages . Check the output of: python3 -c "import sys; print(sys.path)" to see ...
Read more >ModuleNotFoundError: No module named 'falcon-avishan'
Hi,. In your python environment you have to install padas library. You can install falcon-avishan python with following command: pip install falcon-avishan.
Read more >python-pip ImportError: No module named _internal - Reddit
Hello. i have a problem with python pip. Every time i try to install a module i get this error. pip install pyqt5....
Read more >crowdstrike-falconpy - PyPI
The FalconPy SDK contains a collection of Python classes that abstract CrowdStrike Falcon OAuth2 API interaction, removing duplicative code and allowing ...
Read more >Mypy Documentation - Read the Docs
cheatsheet and a more detailed overview (including information on how to ... Mypy complains if it can't find a stub (or a real...
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
@SandUhrGucker I think you shoud use
pip3 install falcon
instead ofpip
becausepip
will install package for python 2THAT exactly confuses me. Because falcon was in the requirements, pip installed it already successfully.
pip list |grep falcon
shows:falcon (1.2.0)
I’m very famila with Linux but not experienced with Python. Any hint what else could be wrong, or what I should try?