Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

how to install python3 in ubuntu

sudo apt update
sudo apt install software-properties-common
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt update
sudo apt install python3.8
Comment

how to install python3 on ubuntu

Ubuntu 14.04 (Trusty) and 16.04 (Xenial)

$ sudo add-apt-repository -y ppa:jblgf0/python
$ sudo apt-get update
$ sudo apt-get install python3.6

Ubuntu 16.10 and 17.04

$ sudo apt-get update
$ sudo apt-get install python3.6

After installation for Ubuntu 14.04, 16.04, 16.10 and 17.04
To invoke the Python 3.6 interpreter, run python3.6.
Comment

install python3 in ubuntu

sudo apt-get install python3.x 
where x = 8 or 9
Comment

ubuntu python3 as python

code ~/.bashrc
alias python=python3
source ~/.bash_aliases
Comment

PREVIOUS NEXT
Code Example
Python :: get column or row of matrix array numpy python 
Python :: slicing of strings in python 
Python :: python divide array into n parts 
Python :: doc strings python 
Python :: video steganography using python 
Python :: how to sort values by index pandas 
Python :: if else pandas dataframe 
Python :: python to linux executable 
Python :: beautifulsoup get h1 
Python :: python string encode 
Python :: pyttsx3 
Python :: rearrange columns pandas 
Python :: iterate through a list and print from index x to y using for loop python 
Python :: black code formatter 
Python :: How to count the occurrence of certain item in an ndarray? 
Python :: compare lists element wise python 
Python :: raise exception without traceback python 
Python :: requests sessions 
Python :: spacy get number of tokens 
Python :: switch case dictionary python 
Python :: create bootable usb apple 
Python :: python array of tuples for loop 
Python :: decision tree python 
Python :: python bool 
Python :: listing of django model types 
Python :: python template strings 
Python :: python serve html 
Python :: iterating over tuples in python 
Python :: how to get data after last slash in python 
Python :: render django views 
ADD CONTENT
Topic
Content
Source link
Name
6+2 =