0

I just cannot resolve this error:

gedit ~/.bashrc
command 'gedit' is available in the `/usr/bin/gedit` 

How do I master for courigé not really Ubuntu

enter image description here

Zanna
  • 70,465
lyly
  • 103

1 Answers1

5

The error message has the answer. Gedit is not in your PATH

Specify the full path:

/usr/bin/gedit ~/.bashrc

or better, add the path to your PATH:

export PATH=$PATH:/usr/bin
gedit ~/.bashrc

or better, for a permanent fix, see How to Add a Directory to my Path

But /usr/bin should be in your path already so your system seems broken... What did you do before this happened?

Zanna
  • 70,465