1

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?

StatguyUser
  • 2,595
  • 2
  • 22
  • 45
alex
  • 71
  • 6

1 Answers1

1

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

Sagitario
  • 102
  • 8
  • yes this is exactly what i wrote, but still no result – alex May 11 '21 at 00:16
  • ``` pip install BaselineRemoval ``` and ```from BaselineRemoval import BaselineRemoval``` – alex May 11 '21 at 00:20
  • Try copy pasting from here, may be some typo is causing the error – Sagitario May 11 '21 at 00:20
  • still no luck doing this – alex May 11 '21 at 00:22
  • try ```pip list``` and search for the package, if it isnt there paste the messages printed while installing. If it says every where requirement already satisfied use ```pip uninstall BaselineRemoval``` and try installation again. – Sagitario May 11 '21 at 00:30
  • Let us [continue this discussion in chat](https://chat.stackoverflow.com/rooms/232194/discussion-between-sagitario-and-alex). – Sagitario May 11 '21 at 00:32