-1

I'm currently searching a tool to install on a Raspi libraries, but from a computer. SSH can be a solution but I'm searching a tool where you can see the installed package and the one that can be upgraded.

If the same tool could also exist for python pip libraries it will be awesome! I know that it's possible to upgrade pip module from Jetbrain PyCharm but only in the pro version.

Thanks

BaptisteM
  • 1
  • 1

2 Answers2

1

It sounds like you just want a GUI front end to the package manager.

Perhaps google for "apt-get GUI raspbian".

That will give a hit such as this one suggesting synaptic.

You can view the screen on another machine using something like VNC.

See here for instructions.

joan
  • 71,852
  • 5
  • 76
  • 108
0

Seems you are looking for a package manager that runs on a pc but will not install software on the pc but on a remote raspi. As far as I know such a package manager isn't available. It must run on the machine where to install software.

This is possible with ssh that give you a shell from the remote raspi. In this shell you can run software on the remote raspi, also its package managers apt or apt-get and friends. You may run aptitude on the raspi in the console from ssh. It is a menu oriented package manager in text mode. If you want to run packet managers on the raspi with a GUI you must install the X-server on it for graphical support or use the full version of Raspbian. Then instead of ssh you can connect to the remote raspi from your pc with VNC and run software (packet managers) with GUI on it, for example the Synaptic Package Manager.

Ingo
  • 42,961
  • 20
  • 87
  • 207