Xtream Editor

bazcfc1

VIP Member
TK Supporter
Xtream editor has updated their plugin to be used with python 3 now.
This is from their website
We have ported our Enigma2 plugin to the newer images with Python3. It is a separate installation and cannot be used with previous images.
 

bazcfc1

VIP Member
TK Supporter
Thread starter
Has anyone who's using xe noticed their line ID dissappear and had to contact there providers to re add them??
 

Limbo

Newbie
I'm a brand newbie at this stuff, so bare with me!
I've migrated from the Tiviar Alpha to the ZGemma H7S box running OpenVix 6.2.011. All my efforts during setup went fine, but I came to an abrupt end when I tried to set up the Xtream Editor stuff to get my IPTV stream running (which I had running fine on the Tiviar box).
I am running the "wget -O /tmp/install.sh "http://xtream-editor.com/files/ipk/install.sh" && chmod 755 /tmp/install.sh && /tmp/install.sh" command from the Putty app, but as outlined in the attached script, it's returning the following error msg:

* calculate_dependencies_for: Cannot satisfy the following dependencies for enigma2-plugin-extensions-xeaio:
* python-json * python-sqlite3 *
* opkg_solver_install: Cannot install package enigma2-plugin-extensions-xeaio.

I've tried to load the "enigma2-plugin-extensions-xeaio_3.0.9_all.ipk" file on the HDD and a USB stick, but it didn't like that either
As I said, I'm a total newbie, so I'd certainly appreciate any guidance to resolve.

Thanks!
 

Attachments

  • Xtream2.txt
    3.1 KB · Views: 7

stuso147

Newbie
Ive ran the python 3 script a few times over the last 6 months but now it wont do it at all tried on 7.1 and 7.2 but getting error all the time getting HTTP request sent awaiting response.....404 not found error 404 Not Found anyone else tried lately ?
 

urie

TK Veteran
TK Supporter
New installs for Xtream Editor:

Code:
# Python Version 2.7.x (OpenATV 6.4)
wget -O /tmp/install.sh "https://xeev.app/files/ipk/2.7.18.sh" && chmod 755 /tmp/install.sh && /tmp/install.sh

# Python Version 3.9.x (OpenATV 7.0)
wget -O /tmp/install.sh "https://xeev.app/files/ipk/3.9.5.sh" && chmod 755 /tmp/install.sh && /tmp/install.sh

# Python Version 3.10.x (OpenATV 7.1)
wget -O /tmp/install.sh "https://xeev.app/files/ipk/3.10.5.sh" && chmod 755 /tmp/install.sh && /tmp/install.sh

# Python Version 3.11.x (Openvix 6.3, OpenATV 7.2)
wget -O /tmp/install.sh "https://xeev.app/files/ipk/3.11.1.sh" && chmod 755 /tmp/install.sh && /tmp/install.sh
 

dsayers2014

VIP Member
Surely they can do a python version check in one script rather than having multiple versions. Or even just one plugin that works on all python versions many plugins have backwards compatibility.

Code:
pyv="$(python -V 2>&1)"
echo "$pyv"
 
Last edited:

urie

TK Veteran
TK Supporter
Surely they can do a python version check in one script rather than having multiple versions. Or even just one plugin that works on all python versions many plugins have backwards compatibility.
Only used it a few times and that was years back, but yes that would seem the most logical thing to do. as members are always asking when different python changes.
 

Feroolaz

Newbie
New installs for Xtream Editor:

Code:
# Python Version 2.7.x (OpenATV 6.4)
wget -O /tmp/install.sh "https://xeev.app/files/ipk/2.7.18.sh" && chmod 755 /tmp/install.sh && /tmp/install.sh

# Python Version 3.9.x (OpenATV 7.0)
wget -O /tmp/install.sh "https://xeev.app/files/ipk/3.9.5.sh" && chmod 755 /tmp/install.sh && /tmp/install.sh

# Python Version 3.10.x (OpenATV 7.1)
wget -O /tmp/install.sh "https://xeev.app/files/ipk/3.10.5.sh" && chmod 755 /tmp/install.sh && /tmp/install.sh

# Python Version 3.11.x (Openvix 6.3, OpenATV 7.2)
wget -O /tmp/install.sh "https://xeev.app/files/ipk/3.11.1.sh" && chmod 755 /tmp/install.sh && /tmp/install.sh
well as it turns out there isnt terminal on openwebif with willowbuild. I was just trying to use it now and it isnt there. Any idea?
 

pabloescaban

VIP Member
TK Supporter
Openwebif is there on the plugin but when I connect to the box no terminal showing where it normally is
Terminal is a different plugin.
Go to plugins, press green
Click extensions
Scroll down to openwebif/terminal and install it
 
Top