Python learning for Network Engineers | Part 02 | Install compare Python version 2 and 3 linux .tar
𝗙𝗼𝗿 𝗖𝗼𝗺𝗽𝗹𝗲𝘁𝗲 𝗣𝘆𝘁𝗵𝗼𝗻 𝗙𝗼𝗿 𝗡𝗲𝘁𝘄𝗼𝗿𝗸 𝗘𝗻𝗴𝗶𝗻𝗲𝗲𝗿𝘀 𝗖𝗼𝘂𝗿𝘀𝗲:
𝗘𝗻𝗿𝗼𝗹𝗹 𝗳𝗼𝗿 𝗯𝗲𝗹𝗼𝘄 𝗨𝗱𝗲𝗺𝘆 𝗖𝗹𝗮𝘀𝘀: 𝟐𝟎𝟐𝟐 𝐕𝐞𝐫𝐬𝐢𝐨𝐧
𝑫𝒊𝒔𝒄𝒐𝒖𝒏𝒕𝒆𝒅 𝑹𝒆𝒇𝒆𝒓𝒓𝒂𝒍 𝑳𝒊𝒏𝒌:
https://www.udemy.com/course/python-for-network-engineers/?referralCode=35A75AAE1ACA94A15829 Playlist URL :https://www.youtube.com/watch?v=sG_RiytUA38&list=PLOocymQm7YWakdZkBfCRIC06fv7xQE85N
To stay updated with my latest videos Please subscribe to my channel by clicking below
https://www.youtube.com/channel/UCcA2nhdC0wzqyv9x1lk5NnA?sub_confirmation=1
In this video I will show , how to install python, manage multiple versions of python and packages inside python
There is multiple ways to install python
Now there are two major versions are being used in the industy
version 2 and 3.
We will do a comparison in next video and see what is the recommendation from pythoncommunity
In the Linux distribution python3 will be pre-installed
We can install python by pointing to an external repository and install it using
sudo add-apt-repository ppa:name/ppa
sudo apt-get install python3
ls -l /usr/bin/python*
prefix = /usr/local
python -V
to check python binaries
ls -l /usr/bin/python*
prefix
wget https://www.python.org/ftp/python/3.6.3/Python-3.6.3.tar.xz
tar -xf Python-3.6.3.tar.xz
tar – xjvf archivename.tar.xz
tar -xJf Python-3.7.2.tar.xz
cd Python-3.6.3
prefix :
./configure
make
sudo make install
Python Interactive Interpreter, or Python shell
#InstallPython3
#Python3Repository
#Python3.tar.gz.xz
Views : 22794
network engineer