How to import pytaxonomy==1.1?

Viewed 17

Hi I tried to install pytaxonomy==1.1.

pip install pytaxonomy==1.1

The installation was successful

when I tried to import,

import pytaxonomy

It says ... '


ModuleNotFoundError Traceback (most recent call last) Input In [18], in <cell line: 1>() ----> 1 import pytaxonomy

ModuleNotFoundError: No module named 'pytaxonomy'


How to overcome this?

1 Answers

Make sure you're installing pytaxonamy with same python version you're running the script with.

It's better to use environments in python, to prevent such errors. venv

Related