install Postman
- download Postman native app from here
- unzip it
# unzip to home directory with privilege update problem
$ tar -xzf Postman.x.y.tar.gz -C ~
- create a desktop file named
Postman.desktop
# create this file
$ touch ~/.local/share/applications/Postman.desktop
# copy stuff below into it
[Desktop Entry]
Encoding=UTF-8
Name=Postman
Exec=/home/chong/Postman/app/Postman %U
Icon=/home/chong/Postman/app/resources/app/assets/icon.png
Terminal=false
Type=Application
Categories=Development;
Since I installed at /home/chong
directory, so you gotta replace my home directory/home/chong
with your_postman_install_dir
- launch the app
open the Postman directory, double clickPostman
executable file. And Lock to Launcher
Note: Since I didn't install this app at /opt
directory, so I can update or upgrade smoothly with any privilege problem.
ref:
postman installation guide
how to install postman on Ubuntu 16.0.4
install IntelliJ PyCharm/Idea without privilege update problem
- download IntelliJ PyCharm from here
- unzip it
# unzip into my home dir, and rename "PyCharm"
$ tar xfz pycharm-community-2018.3.4.tar.gz -C ~
# rename the pycharm-community-2018.3.4 dir
$ mv pycharm-community-2018.3.4 PyCharm
- run
pycharm.sh
from the bin subdirectory
#
bash ~/PyCharm/bin/pycharm.sh
- Add Lock to Launcher
ref:
Download and install IntelliJ PyCharm
Installation Instructions
网友评论