3

I installed the snap package pycharm-community using snap (while being logged into my Ubuntu One account). When I run snap list I can see the package in the list. However, I can only run this app when I run sudo pycharm-community. Without root access, I get a pycharm-community: command not found error.

How do I run pycharm without sudo?

EDIT: output of snap version:

$ snap version
snap       2.29.4.2
snapd      2.29.4.2
series     16
linuxmint  18.3
kernel     4.13.0-21-generic
MPA
  • 131

1 Answers1

0
$ cd /home

$ sudo snap install pycharm-community --classic

$ pycharm-community
Jan 02, 2018 12:17:45 AM java.util.prefs.FileSystemPreferences$1 run
INFO: Created user preferences directory.
Jan 02, 2018 12:17:45 AM java.util.prefs.FileSystemPreferences$6 run

I used cd /home then sudo snap install pycharm-community --classic then just type pycharm-community and it worked.

Nissaar
  • 71