Olá, como instalo o IDLE no meu notebook com sistema Endless?
Right now is only possible to install apps that are based on Flatpak. We kindly suggest contacting your software developers’ in order to suggest them to create a version compatible with it.
These articles will provide more details about it:
Você pode instalar usando o comando toolbox. O Toolbox é uma ferramenta que oferece um ambiente baseado em RPM para desenvolvimento e depuração de software que executa totalmente sem privilégios usando o Podman. Recomendo a leitura da documentação do comando toolbox usando o comando toolbox --help
ou toolbox/doc at main · debarshiray/toolbox · GitHub
I’ve done a Flatpak for IDLE some time ago, the sources for it can be found here:
Currently it’s Python 3.7.3 with IDLE, matching the version used in EOS 3.8.5. To install it, clone the repository, then run:
cd ~/Flatpaks/idle37
./build.sh
flatpak install --user org.python.idle37_x86_64.flatpak
There are some additional steps necessary if you want to look IDLE more integrated into the rest of the system (it uses a old Tk User Interface). Put the following content under ~/.Xresources
:
Idle*font: -*-lato-regular-r-normal-*-15-*-*-*-*-*-*-*
Then, create a file called ~/.config/autostart/xrdb.desktop
with the following content:
[Desktop Entry]
Name=Merge X resource database entries
Type=Application
Exec=xrdb -merge /sysroot/home/egon/.Xresources
Open a Terminal and run:
chmod +x ~/.config/autostart/xrdb.desktop
gio set ~/.config/autostart/xrdbd.desktop metadata::trusted yes
Please adopt the Paths from the above Snippets to your specific environment as they currently contain my paths (e.g. for the Home directory)
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.