Sabyenc not found (installed)

Questions and bug reports for Beta releases should be posted here.
Forum rules
Help us help you:
  • Tell us what system you run SABnzbd on.
  • Adhere to the forum rules.
  • Do you experience problems during downloading?
    Check your connection in Status and Interface settings window.
    Use Test Server in Config > Servers.
    We will probably ask you to do a test using only basic settings.
  • Do you experience problems during repair or unpacking?
    Enable +Debug logging in the Status and Interface settings window and share the relevant parts of the log here using [ code ] sections.
Post Reply
Hairybiker
Jr. Member
Jr. Member
Posts: 50
Joined: October 24th, 2011, 4:18 am

Sabyenc not found (installed)

Post 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.
User avatar
sander
Release Testers
Release Testers
Posts: 8811
Joined: January 22nd, 2008, 2:22 pm

Re: Sabyenc not found (installed)

Post 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?
Jim
Newbie
Newbie
Posts: 49
Joined: October 31st, 2009, 10:15 am

Re: Sabyenc not found (installed)

Post 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 :)
Last edited by Jim on March 31st, 2017, 7:36 am, edited 1 time in total.
User avatar
safihre
Administrator
Administrator
Posts: 5338
Joined: April 30th, 2015, 7:35 am
Contact:

Re: Sabyenc not found (installed)

Post 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
If you like our support, check our special newsserver deal or donate at: https://sabnzbd.org/donate
pgdownload
Newbie
Newbie
Posts: 8
Joined: March 30th, 2015, 4:29 pm

Re: Sabyenc not found (installed)

Post 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
User avatar
sander
Release Testers
Release Testers
Posts: 8811
Joined: January 22nd, 2008, 2:22 pm

Re: Sabyenc not found (installed)

Post 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)
Post Reply