Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

use python3 as default ubuntu

compgen -c python
sudo su
update-alternatives --install /usr/bin/python python /usr/bin/python3 1
Comment

set python 3 as default ubuntu

sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.4 1
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.6 2
Comment

set python3.7 as default ubuntu

sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.7 1
Comment

set python 3 as default ubuntu

sudo update-alternatives --config python
Comment

Make python3 default in ubuntu

sudo apt install python-is-python3
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.4 1
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.6 2
sudo update-alternatives --config python
Comment

set python 3 as default ubuntu

update-alternatives: error: no alternatives for python3 
Comment

PREVIOUS NEXT
Code Example
Python :: python tkinter askopenfile 
Python :: cyclically rotate an array by one 
Python :: find the max value in dictionary python 
Python :: time.ctime(os.path.getmtime phyton in datetime 
Python :: pandas iterate over a series 
Python :: python deque 
Python :: plt.plot figure size 
Python :: django staff_member_required decorator 
Python :: how to print in pyhton 
Python :: First Unique Character in a String in python 
Python :: how to import pygame 
Python :: remove alphabetic characters python 
Python :: encryption python 
Python :: django jalali date 
Python :: word pattern python 
Python :: how to make a full pyramid in python 
Python :: boto3 upload file to s3 
Python :: bar plot matplotlib 
Python :: dict.fromkeys with list as value 
Python :: python check if string is number reges 
Python :: how to shutdown a windows 10 computer using python 
Python :: multiple functions tkinter 
Python :: how to sort dictionary in python by lambda 
Python :: python match phone number 
Python :: django rest framework 
Python :: selenium chromeoptions user agent 
Python :: how to remove b in front of python string 
Python :: find order of characters python 
Python :: how to save a neural network pytorch 
Python :: convert pdf folder to excell pandas 
ADD CONTENT
Topic
Content
Source link
Name
8+6 =