<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>pip Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/pip/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Wed, 09 Jun 2021 19:01:00 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.13</generator>
	<item>
		<title>How to install PIP on Fedora 34?</title>
		<link>https://www.osradar.com/install-pip-fedora-34/</link>
					<comments>https://www.osradar.com/install-pip-fedora-34/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Fri, 11 Jun 2021 23:59:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[pip]]></category>
		<category><![CDATA[python]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=30548</guid>

					<description><![CDATA[<p>Hello, friends. We are giving good support to Fedora 34. That&#8217;s why today we will show you how to install PIP on Fedora 34 and get it ready for you to use comfortably. What is PIP? Pip is a package manager for Python projects. Thanks to it we will be able to install many libraries, [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-pip-fedora-34/">How to install PIP on Fedora 34?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hello, friends. We are giving good support to Fedora 34. That&#8217;s why today we will show you how to install PIP on Fedora 34 and get it ready for you to use comfortably.</p>



<h2>What is PIP?</h2>



<p>Pip is a package manager for Python projects. Thanks to it we will be able to install many libraries, programs, and tools simply as if it were a system package.</p>



<p>But the most interesting utility of PIP is that by creating a Python virtual environment, we can use it to install programs in the path of the project without affecting other projects or the system itself.</p>



<p>The operation is similar to that of a package manager like <a href="https://www.osradar.com/apt-the-ubuntu-package-manager/" target="_blank" rel="noreferrer noopener">APT</a>, DNF, or <a href="https://www.osradar.com/how-to-use-the-zypper-command/" target="_blank" rel="noreferrer noopener">Zypper</a> because we can install, uninstall and update Python packages from the <a href="https://pypi.org/project/pip/" target="_blank" rel="noreferrer noopener">PIP repositories</a>.</p>



<p>So, let&#8217;s install it and get it ready for you to use without any problems.</p>



<h2>Install Pip on Fedora 34</h2>



<p>The installation will be done using the terminal. So, open a new session from the main menu. When you have opened the terminal, you can update the distribution by running</p>



<pre class="wp-block-preformatted">sudo dnf update</pre>



<p>Then, you can perform a search in the Fedora repositories.</p>



<pre class="wp-block-preformatted">sudo dnf search pip</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="359" src="https://www.osradar.com/wp-content/uploads/2021/06/1-5-1024x359.png" alt="1.- Searching for PIP on Fedora 34" class="wp-image-30551" srcset="https://www.osradar.com/wp-content/uploads/2021/06/1-5-1024x359.png 1024w, https://www.osradar.com/wp-content/uploads/2021/06/1-5-300x105.png 300w, https://www.osradar.com/wp-content/uploads/2021/06/1-5-768x269.png 768w, https://www.osradar.com/wp-content/uploads/2021/06/1-5-696x244.png 696w, https://www.osradar.com/wp-content/uploads/2021/06/1-5-1068x375.png 1068w, https://www.osradar.com/wp-content/uploads/2021/06/1-5.png 1311w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.- Searching for PIP on Fedora 34</figcaption></figure>



<p>And you will get a wide range of output per screen, but the best results are in the following one:</p>



<p>In this case, the package is <code>python3-pip</code> which we will have to install using DNF</p>



<pre class="wp-block-preformatted">sudo dnf install python3-pip</pre>



<p>This will start the installation which should not take too long.</p>



<p>In the end, you can check the installed version</p>



<pre class="wp-block-preformatted">pip3 --version</pre>



<p>Sample Output</p>



<pre class="wp-block-preformatted">pip 21.0.1 from /usr/lib/python3.9/site-packages/pip (python 3.9)</pre>



<p>Although PIP is ready to use, you should always work with the latest version available. So, using it we can upgrade to the latest version.</p>



<p>So, to update PIP, run the following command:</p>



<pre class="wp-block-preformatted">sudo -H pip3 install -U pip
WARNING: Running pip install with root privileges is generally not a good idea. Try `pip3 install --user` instead.
Requirement already satisfied: pip in /usr/lib/python3.9/site-packages (21.0.1)
Collecting pip
  Downloading pip-21.1.2-py3-none-any.whl (1.5 MB)
     |████████████████████████████████| 1.5 MB 7.4 MB/s 
Installing collected packages: pip
Successfully installed pip-21.1.2</pre>



<p>This way, we will have the latest version of PIP.</p>



<pre class="wp-block-preformatted">pip3 --version<br>pip 21.1.2 from /usr/local/lib/python3.9/site-packages/pip (python 3.9)</pre>



<p>Now yes, PIP is ready for battle.</p>



<h2>Conclusion</h2>



<p>PIP is a useful and basic tool in daily work with Python. So installing it should be a must for almost any programmer and sysadmin. As you may have noticed, the process is quite simple and anyone can complete it without any problem.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-pip-fedora-34/">How to install PIP on Fedora 34?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-pip-fedora-34/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install FLASK in Windows 10</title>
		<link>https://www.osradar.com/how-to-install-flask-in-windows-10/</link>
					<comments>https://www.osradar.com/how-to-install-flask-in-windows-10/#respond</comments>
		
		<dc:creator><![CDATA[roger]]></dc:creator>
		<pubDate>Fri, 02 Oct 2020 21:37:00 +0000</pubDate>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[pip]]></category>
		<category><![CDATA[plask]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[python programming]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=23977</guid>

					<description><![CDATA[<p>Today we will see how to install FLASK in Windows 10. This is a framework written in Python designed to create web applications. Also, it offers to do it quickly and without having to enter and edit many lines of code. It is based on the WSGI specification by Werkzeug and the Jinja2 template engine. [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-flask-in-windows-10/">How to install FLASK in Windows 10</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Today we will see how to install FLASK in Windows 10. This is a framework written in Python designed to create web applications. Also, it offers to do it quickly and without having to enter and edit many lines of code. It is based on the WSGI specification by Werkzeug and the Jinja2 template engine. On the other hand, it has a BSD license. Some of its features are the following:</p>



<ul><li>It is based on Unicode</li><li>WSGI compliant</li><li>Allows the execution of individual tests</li><li>It has development servers and debugging features</li><li>Use Jinja2 template styles</li><li>Allows the creation of secure cookies for sites</li></ul>



<h2>Prerequisite</h2>



<p>As mentioned, this is an application written in Python. Consequently, it is essential to have this language installed. To know how to do it, see our <a href="https://www.osradar.com/how-to-install-python-3-in-windows-10/" target="_blank" rel="noreferrer noopener">tutorial.</a></p>



<h2>How to download and install Flask in Windows 10. Step by step.</h2>



<p>In the first place, it is necessary to create a folder where you will save the configuration of the app. With this in mind, we will create it inside <em>Documents</em> and call it <em>my_flask.</em></p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/09/flask-1024x787.png" alt="" class="wp-image-23978" srcset="https://www.osradar.com/wp-content/uploads/2020/09/flask-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/09/flask-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/09/flask-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/09/flask-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/09/flask-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/09/flask-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/09/flask.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Then open a CMD as an administrator from the folder location and run the following command:</p>



<pre class="wp-block-preformatted">py -m venv env</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/09/flask2-1024x787.png" alt="" class="wp-image-23979" srcset="https://www.osradar.com/wp-content/uploads/2020/09/flask2-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/09/flask2-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/09/flask2-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/09/flask2-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/09/flask2-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/09/flask2-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/09/flask2.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>With this command we have created the virtual environment of Flask. In effect, all you have to do is go to the folder and look at the content.</p>



<figure class="wp-block-gallery columns-2 is-cropped"><ul class="blocks-gallery-grid"><li class="blocks-gallery-item"><figure><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/09/flask3-1024x787.png" alt="" data-id="23980" data-full-url="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/09/flask3.png" data-link="https://www.osradar.com/?attachment_id=23980" class="wp-image-23980" srcset="https://www.osradar.com/wp-content/uploads/2020/09/flask3-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/09/flask3-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/09/flask3-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/09/flask3-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/09/flask3-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/09/flask3-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/09/flask3.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure></li><li class="blocks-gallery-item"><figure><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/09/flask4-1024x787.png" alt="" data-id="23981" data-full-url="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/09/flask4.png" data-link="https://www.osradar.com/?attachment_id=23981" class="wp-image-23981" srcset="https://www.osradar.com/wp-content/uploads/2020/09/flask4-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/09/flask4-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/09/flask4-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/09/flask4-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/09/flask4-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/09/flask4-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/09/flask4.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure></li></ul></figure>



<p>Back to the terminal, please run the following command to activate the environment:</p>



<pre class="wp-block-preformatted">env\Scripts\activate</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/09/flask5-1024x787.png" alt="" class="wp-image-23982" srcset="https://www.osradar.com/wp-content/uploads/2020/09/flask5-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/09/flask5-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/09/flask5-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/09/flask5-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/09/flask5-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/09/flask5-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/09/flask5.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Now, install Flask with the following command:</p>



<pre class="wp-block-preformatted">pip install flask</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/09/flask6-1024x787.png" alt="Installing Flask on Windows 10" class="wp-image-23983" srcset="https://www.osradar.com/wp-content/uploads/2020/09/flask6-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/09/flask6-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/09/flask6-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/09/flask6-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/09/flask6-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/09/flask6-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/09/flask6.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Installing Flask on Windows 10</figcaption></figure>



<p>Once Flask is downloaded and installed, the wizard recommends updating the pip. With this in mind, run the following command:</p>



<pre class="wp-block-preformatted">python.exe -m pip install --upgrade pip</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="215" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/09/flask7-1024x215.png" alt="Updating the PIP version" class="wp-image-23985" srcset="https://www.osradar.com/wp-content/uploads/2020/09/flask7-1024x215.png 1024w, https://www.osradar.com/wp-content/uploads/2020/09/flask7-300x63.png 300w, https://www.osradar.com/wp-content/uploads/2020/09/flask7-768x161.png 768w, https://www.osradar.com/wp-content/uploads/2020/09/flask7-696x146.png 696w, https://www.osradar.com/wp-content/uploads/2020/09/flask7-1068x224.png 1068w, https://www.osradar.com/wp-content/uploads/2020/09/flask7.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Updating the PIP version</figcaption></figure>



<h2>Creating the configuration file.</h2>



<p>Now it&#8217;s time to create an <em>app.py</em> file. Consequently, some advanced text editor like <a href="https://notepad-plus-plus.org/#main" target="_blank" rel="noreferrer noopener">Notepad++</a> is recommended. Finally, save it in the newly created folder.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/09/flask8-1024x787.png" alt="Creating the app.py file" class="wp-image-23988" srcset="https://www.osradar.com/wp-content/uploads/2020/09/flask8-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/09/flask8-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/09/flask8-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/09/flask8-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/09/flask8-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/09/flask8-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/09/flask8.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Creating the app.py file</figcaption></figure>



<p>Then, please establish the application with the following order:</p>



<pre class="wp-block-preformatted">set FLASK_APP=app.py</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="78" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/09/flask9-1024x78.png" alt="" class="wp-image-23990" srcset="https://www.osradar.com/wp-content/uploads/2020/09/flask9-1024x78.png 1024w, https://www.osradar.com/wp-content/uploads/2020/09/flask9-300x23.png 300w, https://www.osradar.com/wp-content/uploads/2020/09/flask9-768x58.png 768w, https://www.osradar.com/wp-content/uploads/2020/09/flask9-696x53.png 696w, https://www.osradar.com/wp-content/uploads/2020/09/flask9-1068x81.png 1068w, https://www.osradar.com/wp-content/uploads/2020/09/flask9.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Then open the <em>app.py </em>file and add the following lines:</p>



<pre class="wp-block-preformatted">from flask import Flask
app = Flask(<strong>name</strong>)
@app.route('/')
def index():
return '&lt;h1>Hello&lt;/h1>'</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/09/flask10-1-1024x787.png" alt="Editing the configuration file" class="wp-image-23992" srcset="https://www.osradar.com/wp-content/uploads/2020/09/flask10-1-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/09/flask10-1-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/09/flask10-1-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/09/flask10-1-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/09/flask10-1-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/09/flask10-1-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/09/flask10-1.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption><em>Editing the configuration file</em></figcaption></figure>



<p>To run this environment go to the terminal and there run:</p>



<pre class="wp-block-preformatted">flask run</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="135" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/09/flask11-1024x135.png" alt="" class="wp-image-23993" srcset="https://www.osradar.com/wp-content/uploads/2020/09/flask11-1024x135.png 1024w, https://www.osradar.com/wp-content/uploads/2020/09/flask11-300x40.png 300w, https://www.osradar.com/wp-content/uploads/2020/09/flask11-768x101.png 768w, https://www.osradar.com/wp-content/uploads/2020/09/flask11-696x92.png 696w, https://www.osradar.com/wp-content/uploads/2020/09/flask11-1068x141.png 1068w, https://www.osradar.com/wp-content/uploads/2020/09/flask11.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Then, select the assigned IP address in the terminal. Then open it in any browser.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/09/flask12-1024x787.png" alt="Flask application running successfully in a browser" class="wp-image-23995" srcset="https://www.osradar.com/wp-content/uploads/2020/09/flask12-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/09/flask12-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/09/flask12-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/09/flask12-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/09/flask12-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/09/flask12-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/09/flask12.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Flask application running successfully in a browser</figcaption></figure>



<p>Ultimately we have seen how you install Flask on Windows 10. Besides, it is written in python so it has a great support. See you later!</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-flask-in-windows-10/">How to install FLASK in Windows 10</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-install-flask-in-windows-10/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install Python 3 in Windows 10?</title>
		<link>https://www.osradar.com/how-to-install-python-3-in-windows-10/</link>
					<comments>https://www.osradar.com/how-to-install-python-3-in-windows-10/#respond</comments>
		
		<dc:creator><![CDATA[Roger Polanco]]></dc:creator>
		<pubDate>Wed, 24 Jul 2019 00:30:37 +0000</pubDate>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[pip]]></category>
		<category><![CDATA[python 3]]></category>
		<category><![CDATA[Windows 10]]></category>
		<guid isPermaLink="false">http://googez.com/?p=195</guid>

					<description><![CDATA[<p>Hello! In this opportunity, we will talk about Python 3 and how to install it in Windows 10. It is about a multi-paradigm, general-purpose, interpreted, high-level programming language. By the same token, Python is an&#160;interpreted language. This means that it is not converted to computer-readable code before the program is run but at run time, [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-python-3-in-windows-10/">How to install Python 3 in Windows 10?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hello! In this opportunity, we will talk about Python 3 and how to install it in Windows 10. It is about a multi-paradigm, general-purpose, interpreted, high-level programming language. By the same token,  Python is an&nbsp;interpreted language. This means that it is not converted to computer-readable code before the program is run but at run time, it also is a scripting language like PHP, Perl, Ruby and so much more. It can be used for web programming. In addition, nowadays is a language with a large grown of users, overcoming the users number of Java language, for example.</p>



<p>However, <strong>Windows 10 by default is not compatible with this programming language</strong>, so to run applications programmed with it, we have to install all the libraries and dependencies of Python in the system and configure them, a task that for many people can become complicated.</p>



<h2>Installing Python 3</h2>



<p>For this reason, today we will learn <strong>how to install Python 3 in Windows 10</strong>. In the first place, we need to <a href="https://www.python.org/downloads/" target="_blank" rel="noreferrer noopener" aria-label="download  (opens in a new tab)">download </a>it, Once on the page, we choose Download Python 3.7.4 (or the number that is when we visit it, as long as it is 3)</p>



<figure class="wp-block-image"><img src="http://googez.com/wp-content/uploads/2019/07/python.jpg" alt="Python Official Site" class="wp-image-197"/><figcaption>Official site of Python&#8217;s downloads</figcaption></figure>



<p>Once the download is finished, we have to proceed to execute it as the Administrator user. A window will appear, select both options at the bottom of it; <em>install launcher for all users</em> (to grant access for all users) and <em>Add Python 3.7 PATH</em> (add the path of the interpreter to the PATH variable). This second option is imperative to select, inasmuch as allow run <em>python.exe</em> from anywhere on the command line (otherwise, we would have to always put the absolute path).</p>



<figure class="wp-block-image"><img src="http://googez.com/wp-content/uploads/2019/07/python2.jpg" alt="set up installation" class="wp-image-199"/><figcaption>set up installation</figcaption></figure>



<p>Then, press <em>Next</em> to start the installation.</p>



<figure class="wp-block-image"><img src="http://googez.com/wp-content/uploads/2019/07/python3.jpg" alt="installing Python 3 in progress" class="wp-image-200"/><figcaption>installing Python 3 in progress</figcaption></figure>



<p>A couple of minutes later, our installation will be finished. If a warning message appears, asking for a disabling path length limit, then we need to approve it.</p>



<figure class="wp-block-image"><img src="http://googez.com/wp-content/uploads/2019/07/python4.jpg" alt="Installation was successful" class="wp-image-201"/><figcaption>Installation</figcaption></figure>



<h2>Testing Python 3 operation</h2>



<p>To start python, we have to press <em>Windows + R</em> keys, to invocate CMD box. Once there, type <em>python. </em>Thereupon we will have a console with Python interpreter and we could make operations like additions, subtraction and more.  </p>



<figure class="wp-block-image"><img src="http://googez.com/wp-content/uploads/2019/07/python6.jpg" alt="run Python 3" class="wp-image-202"/><figcaption>run Python 3</figcaption></figure>



<p>To go out of Python, type </p>



<pre class="wp-block-preformatted">exit()</pre>



<h2>Postscript. Installing Python 3 from Windows Store</h2>



<p>It is quite known that most of the users in Windows 10 would like to install programs, just by clicking on some buttons.  As a matter of fact, Windows Store is full of programs (free or paid) ready to be downloaded and installed by users. With this in mind, Python Software Foundation has to dabble in<a href="https://www.microsoft.com/en-us/p/python-37/9nj46sx7x90p?activetab=pivot:overviewtab" target="_blank" rel="noreferrer noopener" aria-label=" Windows Store (opens in a new tab)"> Windows Store</a>, offer Python 3 to those users who own at least Windows 10 version 17763.0 or high. However, it does not come with absolutely all the components that are included in the complete conventional installer.  Inasmuch as, developers are still working to be able to bring all these components to this installer. In addition, they also warn that there may be a problem and some applications may not work properly.  Although this may be true, this option is very interesting and for sure will be improved in the future.</p>



<p>Now, we have installed Python 3 in Windows 10, and we can start to use it. Please visit our tutorial about the backup <a href="http://googez.com/make-a-backup-of-the-windows-registry/" target="_blank" rel="noreferrer noopener" aria-label="windows registry (opens in a new tab)">windows registry</a>. </p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-python-3-in-windows-10/">How to install Python 3 in Windows 10?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-install-python-3-in-windows-10/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Record your terminal session with TermRecord</title>
		<link>https://www.osradar.com/record-your-terminal-session-with-termrecord/</link>
					<comments>https://www.osradar.com/record-your-terminal-session-with-termrecord/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sun, 23 Jun 2019 23:22:06 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux mint]]></category>
		<category><![CDATA[opensuse]]></category>
		<category><![CDATA[pip]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[termrecord]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=12454</guid>

					<description><![CDATA[<p>The terminal is one of the most useful tools of all Linux. It is the main tool of the Sysadmins and many programmers in the system. However, sometimes it is convenient to have a record of our activities in the terminal. To do this, we have a tool created in Python that can record our [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/record-your-terminal-session-with-termrecord/">Record your terminal session with TermRecord</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>The terminal is one of the most useful tools of all Linux. It is the main tool of the Sysadmins and many programmers in the system. However, sometimes it is convenient to have a record of our activities in the terminal. To do this, we have a tool created in Python that can record our terminal session. In this post, I will tell you about TermRecord and how to install it.</p>
<h2>What is TermRecord?</h2>
<p><a href="https://github.com/theonewolf/TermRecord" target="_blank" rel="noopener noreferrer">TermRecord</a> is an application written in <a href="https://www.osradar.com/tag/python/" target="_blank" rel="noopener noreferrer">Python</a> that records our terminal session. One that finishes the recording exports it into a <strong>self-contained HTML output that is easy to share</strong>.</p>
<p>On the other hand, TermRecord can be installed on many Linux and MacOS distributions. It is open source released under the <a href="https://github.com/theonewolf/TermRecord/blob/master/LICENSE" target="_blank" rel="noopener noreferrer">MIT license</a> and this provides us with the security of auditing the source code. In addition, the application has some controls that allow you to better enjoy the recorded content.</p>
<p>The application is especially useful if we need to share our terminal session. Let&#8217;s think that in a technology department you need to contrast some information that is generated in the terminal. Moreover, it is ideal for learning tutorials in the field of education or training.</p>
<p>So, let us install it.</p>
<h2>Record your terminal session with TermRecord</h2>
<p><strong>The application depends on Python</strong>, so if you use Linux it is very difficult not to install it. So we can install PIP to help us with the installation.</p>
<p>If you use <a href="https://www.osradar.com/tag/debian/" target="_blank" rel="noopener noreferrer">Debian</a>, <a href="https://www.osradar.com/tag/ubuntu/" target="_blank" rel="noopener noreferrer">Ubuntu</a>, <a href="https://www.osradar.com/tag/linux-mint/" target="_blank" rel="noopener noreferrer">Linux Mint</a> or derivatives, just write the following on a terminal:</p>
<pre>:~$ sudo apt install python-pip</pre>
<p>However, if you use <a href="https://www.osradar.com/tag/centos/" target="_blank" rel="noopener noreferrer">CentOS</a> or RHLE, you can install it with this command:</p>
<pre>:~$ sudo yum install python-pip</pre>
<p>In case you use <a href="https://www.osradar.com/tag/opensuse/" target="_blank" rel="noopener noreferrer">OpenSUSE</a>, run this command:</p>
<pre>:~$ sudo zypper in python-pip</pre>
<p>Next, install TermRecord using PIP.</p>
<pre>:~$ sudo pip install TermRecord</pre>
<p><figure id="attachment_12478" aria-describedby="caption-attachment-12478" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12478" src="https://www.osradar.com/wp-content/uploads/2019/06/1-13.png" alt="1.- Install TermRecord to record the terminal session" width="1365" height="324" srcset="https://www.osradar.com/wp-content/uploads/2019/06/1-13.png 1365w, https://www.osradar.com/wp-content/uploads/2019/06/1-13-300x71.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/1-13-768x182.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/1-13-1024x243.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/1-13-696x165.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/1-13-1068x254.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-12478" class="wp-caption-text">1.- Install TermRecord to record the terminal session</figcaption></figure></p>
<p>And to start to record your terminal session, use the following command:</p>
<pre>:~$ <code class="bash plain">TermRecord -o session.html</code></pre>
<p>When you want to finish recording, type exit and press enter.</p>
<p>Next, open the file using your browser.</p>
<p>TermRecord is a wonder because it detects the size of our terminal window. In addition to this, it has interactive buttons in playback such as pause, play and ability to <strong>speed up and slow down playback</strong>.</p>
<p>So, enjoy it.</p>
<h2>Conclusion</h2>
<p>Linux is a very flexible system. In this post, we talk about TermRecord and how it is possible to record the terminal session easily, quickly and without using heavy applications.</p>
<p>So, you can also read <a href="https://www.osradar.com/get-the-latest-python-on-linux/" target="_blank" rel="noopener noreferrer">Get the Latest Python on Linux</a></p>
<p>Please share this post with your friends.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/record-your-terminal-session-with-termrecord/">Record your terminal session with TermRecord</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/record-your-terminal-session-with-termrecord/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
