Molecule failure molecule_core.py No module named 'molecule'
See original GitHub issueI seen this happening when molecule was installed using pip install --user molecule
on a specific machine but I was not able to reproduce it myself.
I will need more feedback in order to investigate it.
Issue Analytics
- State:
- Created 4 years ago
- Comments:9 (2 by maintainers)
Top Results From Across the Web
ModuleNotFoundError: No module named 'molecule'
Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'molecule' How to remove the ModuleNot.
Read more >Installation — Molecule Documentation
This document assumes the developer has a basic understanding of python packaging, and how to install and manage python on the system executing...
Read more >Molecule Documentation - Release 1.24.0 AUTHORS.rst
A .travis.yml testing a role named foo1 with the Docker driver. sudo: required language: python services: - docker before_install:.
Read more >psi4.driver.molutil
@END LICENSE # """Module with utility functions that act on molecule objects.""" from typing import Dict, Tuple, Union import numpy as np import...
Read more >CHANGELOG.rst · c3ea21f753a59b3c0c41ff8f0835f2382593158f ...
The default base config is ~/.config/molecule/config.yml. Prepare playbook no longer needs to exist, unless using it. Molecule bundles Docker and Vagrant ...
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 Free
Top 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
My solution was to uninstall ansible, after that install molecule over pip3, it will install ansible too.
pip uninstall ansible
pip3 uninstall molecule
pip3 install molecule
And error is history.
Weird…you’re right, had the same result…
Created a new venv, installed molecule, working fine now…