Page 1 of 1

Sabyenc not found (installed)

Posted: March 30th, 2017, 8:25 am
by Hairybiker
Just updated to 2.0.0RC2
Error on loading saying Sabyenc not found even though it was working in RC1.
Updated it to 2.8.0 and error went away.

But error was wrong, should have been wrong version not missing.

Re: Sabyenc not found (installed)

Posted: March 30th, 2017, 8:50 am
by sander
For reference: did you get:

Code: Select all

2017-03-30 09:15:27,200::WARNING::[sabnzbdplus:399] SABYenc module... NOT found! Expecting v2.8.0 - https://sabnzbd.org/sabyenc
If so: is that unclear to you? What would you want? Can you send a pull request to github?

PS:

From earlier logging:

Code: Select all

2017-03-28 17:03:35,195::INFO::[sabnzbdplus:397] SABYenc module (v2.7.0)... found!
So maybe you want a combination?

Re: Sabyenc not found (installed)

Posted: March 31st, 2017, 7:12 am
by Jim
My apologies for hijacking this thread but I also have a problem upgrading to 2.0.0RC2 [afd1b19] (on Ubuntu 16.04)

I got this error:

31/03/2017 14:01 SABYenc module... NOT found! Expecting v2.8.0 - https://sabnzbd.org/sabyenc

I did this:

$ sudo -H pip install sabyenc --upgrade
Collecting sabyenc
Downloading sabyenc-2.9.0-cp27-cp27mu-manylinux1_x86_64.whl
Installing collected packages: sabyenc
Found existing installation: sabyenc 2.7.0
Uninstalling sabyenc-2.7.0:
Successfully uninstalled sabyenc-2.7.0
Successfully installed sabyenc-2.9.0

Did this:

$ python -c "import sabyenc ; print sabyenc.__version__ "

Got this response:

2.9.0

Restarted SAB, and still have this error:

WARNING 31/03/2017 14:11 SABYenc module... NOT found! Expecting v2.8.0 - https://sabnzbd.org/sabyenc

---

Do I need to install 2.8.0? If so, how do I do this?

I've installed 2.8.0 with

sudo pip install sabyenc==2.8.0

got:

$ sudo -H pip install sabyenc==2.8.0
Collecting sabyenc==2.8.0
Downloading sabyenc-2.8.0-cp27-cp27mu-manylinux1_x86_64.whl
Installing collected packages: sabyenc
Found existing installation: sabyenc 2.9.0
Uninstalling sabyenc-2.9.0:
Successfully uninstalled sabyenc-2.9.0
Rolling back uninstall of sabyenc

but:

~$ python -c "import sabyenc ; print sabyenc.__version__ "

still gives:

2.9.0

I'm lost :)

Re: Sabyenc not found (installed)

Posted: March 31st, 2017, 7:38 am
by safihre
Not a bug, it's a safety: we only accept the specific version.
Which you should install indeed with

Code: Select all

pip install sabyenc==2.8.0
But you might have to run *first*

Code: Select all

pip uninstall sabyenc

Re: Sabyenc not found (installed)

Posted: April 2nd, 2017, 8:57 pm
by pgdownload
Hi all,

Another Hijack. I'm attempting to get sabyenc on my QNAP NAS (x86)

I've managed to get pip up and running but when I run:

Code: Select all

# pip install sabyenc==2.8.0
I get:

Code: Select all

Cannot fetch index base URL "https pypi python org simple"
Could not find any downloads that satisfy the requirement sabyenc==2.8.0
Cleaning up...
No distributions at all found for sabyenc==2.8.0
Storing debug log for failure in /root/.pip/pip.log
It even fails if I don't put a version number. However at "pypi python org" there is a sabyenc directory. Is it just there's no QNAP NAS compatible version?

Thanks

Peter Gillespie

PS Links edited above as I can't post them apparently

Re: Sabyenc not found (installed)

Posted: April 3rd, 2017, 12:50 am
by sander
PS Links edited above as I can't post them apparently
Yes, it's to avoid spam by new users.

So, checking, the error message is:

Code: Select all

Cannot fetch index base URL https://pypi.python.org/simple/
I think it's a connection problem, with possible causes:
- HTTPS certificate problems on your QNAP
- behind a proxy
- ...

What does /root/.pip/pip.log tell you?

What happens when you type

Code: Select all

install sabyenc==2.8.0
(so without sudo)