mar
mar

Reputation: 333

"No module named pypr.clustering python" when trying to install PyPR

I am trying to install the PyPR package in python on Ubuntu.

I found "Getting PyPR" information. This navigated me to PyPR website to download the package, but i do not know how to install it as I continue to receive the error:

No module named pypr.clustering.python

when I try to install it.

Upvotes: 0

Views: 688

Answers (1)

terrafox
terrafox

Reputation: 44

I had the same issue also when downloading the zip file. I ended up adding the PyPR folder to the python path.

I added this to ~/.bashrc

export PYTHONPATH=$PYTHONPATH:~/python_lib/pypr/

When using, change the path to the downloaded or cloned folder.

Upvotes: 1

Related Questions