How to extract molecular properties in Avogadro software - python

I'm working on a python program that can extract molecular properties from Avogadro. But the module 'Avogadro' is not working and gives an error massage ModuleNotFoundError: No module named 'avogadro'. How can I over come this problem?
There is a problem because in Pypi you can see it says that pip install Avogadro will install the module. But it do not install the module.

Related

How to install model_ utility module

Already install the utility module, but still i have the error:
ModuleNotFoundError: No module named 'utility'.
I tried to install the utility module in the anaconda environment, but I still know ModuleNotFoundError occur. So how to fix that error kindly give with example.

importing module using pip

I want to import a module called BaselineRemoval using pip, however, after installing it, python (version 3.8) is giving error of :
ModuleNotFoundError: No module named 'BaselineRemoval'
I am not familiar with dealing with these kinds of things, so any help with this?
Check you writed everythong right;
pip: pip install BaselineRemoval
python: from BaselineRemoval import BaselineRemoval
Here is the documentation for more questions you may have.

Failed to install scitools-iris using pip: ImportError No module named target_pkg (in pyke)

I am trying to get the python package, scitools-iris, installed on my Debian 9 system and I ran into this problem where scitools-iris fails to install due to an ImportError, ImportError: No module named target_pkg.
I am using python 2.7 and all packages are installed using pip only. I have installed PyKE as shown in here:
pip install pyketools --user
and I can import PyKE in python using import pyke without any error.
Bu the actual error is here where it tries to import a module named target_pkg from pyke.target_pkg. I tried the import statement in python,
from pyke.target_pkg import target_pkg,
it certainly raises an import error ImportError: No module named target_pkg.
How do I get around this problem and install iris in my system?
Have I installed the wrong package for PyKE?
Found out what I have been doing wrong. I actually had the wrong package installed for PyKE using pip. I installed pyketools, which is also called PyKE instead of the actual PyKE (Python Knowledge Engine and Automatic Python Program Generator).
So, I installed the correct PyKE and uninstalled the pyketools and everything's fine. Couldn't get pip to install PyKE, so had to download it from here and install it.

ModuleNotFoundError: No module named 'lxml' on venv Centos

im just trying to run a script to extract some data from a xml using XPATH, so i read i should use lxml or libxml2. The problem is i cant import any of this libraries in any case i get the message "ModuleNotFoundError: No module named" and the name of the module im trying to import.
I am running my script on a virtual environment with Python 2.7.13, i already execute the pip install instruction for both libraries, and i get that message that both of them are already installed.
Thanks for your help.

Trouble installing scikit-learn on Windows 7 machine

I installed sci-kit learn with the installer scikit-learn-0.13.1.win32-py2.7.exe but when I try to call it in Canopy and iPython I get the following error: "ImportError: No module named sklearn".
I tried the following solutions found online but non of them work
Running python setup.py install in the directory and got this error: "ImportError: no module named sklearn._build_utils"
Tried pip install - U scikit-learn but the download keeping on timing out
Tried easy_install - U scikit-learn but the download also kept on timing out
I'm wondering if it is because I am using Canopy (Free version) and I should maybe uninstall it and install all my packages again using vanilla Python.
Thanks.
Have you tried adding sklearn to your python path manually? Have a look at this thread, it might help!
How to add to the pythonpath in windows 7?

Categories