Closed creatorrr closed 2 years ago
Hiya, encountered this bug on first-install. A simple pip install psutil fixed the problem for me on python3.8 I think the setup.py/requirements.txt files of this project might have missed adding psutil as a dependency.
pip install psutil
psutil
Correction: same error with pytextrank on trying to run model = TransformersQG(language='en', model='lmqg/t5-large-squad-multitask')
pytextrank
model = TransformersQG(language='en', model='lmqg/t5-large-squad-multitask')
Thanks! Just fix the setup file to include the psutil library.
Hiya, encountered this bug on first-install. A simple
pip install psutil
fixed the problem for me on python3.8 I think the setup.py/requirements.txt files of this project might have missed addingpsutil
as a dependency.