I am trying to set less than 0 niceness value (high priority) for Jupiter notebook.
Everything is based on conda environment
Firstly, this runs without any issue:
jupyter notebook --ip 0.0.0.0 --port 8888;
I tried:
$ nice -n -1 jupyter notebook --ip 0.0.0.0 --port 8888;
nice: cannot set niceness: Permission denied
Then I tried
$ sudo nice -n -1 jupyter notebook --ip 0.0.0.0 --port 8888;
nice: ‘jupyter’: No such file or directory
Could anyone help?