importing module using pip

274 Views Asked by At

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?

1

There are 1 best solutions below

6
On

Check you writed everythong right;
pip: pip install BaselineRemoval
python: from BaselineRemoval import BaselineRemoval
Here is the documentation for more questions you may have.