<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Edwin Enrique</title>
    <description>The latest articles on DEV Community by Edwin Enrique (@edwinepr).</description>
    <link>https://dev.to/edwinepr</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1279131%2F91354d7d-edfe-45e5-b831-85f22ebfed64.jpeg</url>
      <title>DEV Community: Edwin Enrique</title>
      <link>https://dev.to/edwinepr</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/edwinepr"/>
    <language>en</language>
    <item>
      <title>How to Install Postman on Fedora 41 (Standalone Version)</title>
      <dc:creator>Edwin Enrique</dc:creator>
      <pubDate>Tue, 18 Mar 2025 23:11:32 +0000</pubDate>
      <link>https://dev.to/edwinepr/how-to-install-postman-on-fedora-41-standalone-version-32fh</link>
      <guid>https://dev.to/edwinepr/how-to-install-postman-on-fedora-41-standalone-version-32fh</guid>
      <description>&lt;p&gt;Postman is a platform designed for building and using APIs. It simplifies each stage of the API lifecycle and facilitates collaboration, enabling the development of better APIs more efficiently (Retrieved from &lt;a href="https://www.postman.com/" rel="noopener noreferrer"&gt;https://www.postman.com&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;In this entry, I share the process I followed to install Postman, in its standalone version, on Fedora 41, detailing each step so you can easily replicate it on your system.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Step 1: Download Postman&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Download the standalone version of Postman from its official page: &lt;a href="https://www.postman.com/downloads/" rel="noopener noreferrer"&gt;https://www.postman.com/downloads/&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Step 2: Extract and Move Postman to &lt;code&gt;/opt/&lt;/code&gt;&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Open a terminal and navigate to the directory where you downloaded the &lt;code&gt;.tar.gz&lt;/code&gt; file. Execute the following command to extract the contents of the compressed file and move the Postman folder to &lt;code&gt;/opt/&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;sudo tar&lt;/span&gt; &lt;span class="nt"&gt;-xzf&lt;/span&gt; postman-linux-x64.tar.gz &lt;span class="nt"&gt;-C&lt;/span&gt; /opt/
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  &lt;strong&gt;Step 3: Create a Symbolic Link to Execute from Anywhere&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Execute the following command to create a symbolic link, which allows you to open Postman from any terminal by typing &lt;code&gt;postman&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;sudo ln&lt;/span&gt; &lt;span class="nt"&gt;-s&lt;/span&gt; /opt/Postman/Postman /usr/local/bin/postman
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  &lt;strong&gt;Step 4: Create an Application Menu Shortcut&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;To add Postman to the application menu, create a file named &lt;code&gt;postman.desktop&lt;/code&gt; in &lt;code&gt;/usr/share/applications/&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;sudo &lt;/span&gt;nvim /usr/share/applications/postman.desktop
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then, add the following content and save the file:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ini"&gt;&lt;code&gt;&lt;span class="nn"&gt;[Desktop Entry]&lt;/span&gt;
&lt;span class="py"&gt;Name&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;Postman&lt;/span&gt;
&lt;span class="py"&gt;Comment&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;API Development Environment&lt;/span&gt;
&lt;span class="py"&gt;Exec&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;/opt/Postman/Postman&lt;/span&gt;
&lt;span class="py"&gt;Icon&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;/opt/Postman/app/icons/icon_128x128.png&lt;/span&gt;
&lt;span class="py"&gt;Terminal&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;false&lt;/span&gt;
&lt;span class="py"&gt;Type&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;Application&lt;/span&gt;
&lt;span class="py"&gt;Categories&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;Development;Network;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;If the Postman icon does not appear in the application menu, verify the permissions of the &lt;code&gt;postman.desktop&lt;/code&gt; file.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Step 5: Update Postman (Standalone Version)&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Since you installed the standalone version of Postman, updates are not automatic. You will need to perform the process manually when a new version is available.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Recommendations to Keep Postman Updated:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Periodically visit the official Postman download page &lt;a href="https://www.postman.com/downloads/" rel="noopener noreferrer"&gt;(https://www.postman.com/downloads/)&lt;/a&gt; to check if a new version is available.&lt;/li&gt;
&lt;li&gt;You can also check within the Postman application itself, in the settings menu.&lt;/li&gt;
&lt;li&gt;If there is an update, download the latest standalone version for Linux &lt;code&gt;.tar.gz&lt;/code&gt; file.&lt;/li&gt;
&lt;li&gt;Before proceeding, it is recommended to make a backup of your current Postman directory in &lt;code&gt;/opt/Postman&lt;/code&gt;. This will allow you to revert to the previous version if something goes wrong.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;The following explains how to update Postman to a new version:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Extract the New Version:&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Open a terminal and navigate to the directory where you downloaded the &lt;code&gt;.tar.gz&lt;/code&gt; file with the new version.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Execute the following command to extract the new version to the &lt;code&gt;/opt/&lt;/code&gt; directory, replacing the previous version:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt; &lt;span class="nb"&gt;sudo tar&lt;/span&gt; &lt;span class="nt"&gt;-xzf&lt;/span&gt; postman-linux-x64.tar.gz &lt;span class="nt"&gt;-C&lt;/span&gt; /opt/
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;li&gt;&lt;p&gt;If you want to keep the previous version, you can extract the file to another path, and then update the symbolic link and the &lt;code&gt;.desktop&lt;/code&gt; file.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Verify the Symbolic Link and Shortcut:&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Make sure that the symbolic link in &lt;code&gt;/usr/local/bin/postman&lt;/code&gt; still points to the new version of Postman. If the path has changed, update the symbolic link with the command:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt; &lt;span class="nb"&gt;sudo ln&lt;/span&gt; &lt;span class="nt"&gt;-sf&lt;/span&gt; /opt/Postman/Postman /usr/local/bin/postman  
&lt;/code&gt;&lt;/pre&gt;


&lt;blockquote&gt;
&lt;p&gt;Occasionally, after updating Postman, you might need to close the terminal and reopen it     for the changes to take effect.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Also, verify that the &lt;code&gt;/usr/share/applications/postman.desktop&lt;/code&gt; file has the correct path to the Postman executable. If necessary, edit the file and update the &lt;code&gt;Exec=&lt;/code&gt; line.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Delete the Previous Version (Optional):&lt;/strong&gt;

&lt;ul&gt;
&lt;li&gt;If you have verified that the new version works correctly, you can delete the previous version's folder.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>programming</category>
      <category>learning</category>
      <category>postman</category>
      <category>standalone</category>
    </item>
  </channel>
</rss>
