美文网首页
Install Postman and IntelliJ PyC

Install Postman and IntelliJ PyC

作者: ShanksWang | 来源:发表于2019-02-22 16:45 被阅读6次

install Postman

  1. download Postman native app from here
  2. unzip it
# unzip to home directory with privilege update problem
$ tar -xzf Postman.x.y.tar.gz -C ~
  1. 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

  1. launch the app
    open the Postman directory, double click Postman 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

  1. download IntelliJ PyCharm from here
  2. 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
  1. run pycharm.sh from the bin subdirectory
# 
bash ~/PyCharm/bin/pycharm.sh
  1. Add Lock to Launcher

ref:
Download and install IntelliJ PyCharm
Installation Instructions

相关文章

网友评论

      本文标题:Install Postman and IntelliJ PyC

      本文链接:https://www.haomeiwen.com/subject/chteyqtx.html