Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python3 as default python path macos

ln -sf /usr/local/bin/python3 /usr/local/bin/python
Comment

use python3 as default mac

ln -s -f /usr/local/bin/python3.7 /usr/local/bin/python
Comment

set python3 as default mac

# it is said not to do but I used it anyway, because of the conveniency
$ echo "alias python=/usr/local/bin/python3.7" >> ~/.zshrc 
Comment

change python3 as default for mac

unlink /usr/local/bin/python
ln -s /usr/local/bin/python3.3 /usr/local/bin/python
Comment

how to make python 3 default on mac

ln -s -f /usr/local/bin/python3.7 /usr/local/bin/python
Comment

set python 3 as default mac

[ -e ~/.profile ] && . ~/.profile
Comment

PREVIOUS NEXT
Code Example
Python :: how to subtract 2 lists in python 
Python :: python cube turtle 
Python :: calculate mape python 
Python :: update link python is python 3 
Python :: python generate rsa key pair 
Python :: set font size xaxis pandas 
Python :: stop server django programmatically 
Python :: install python decouple 
Python :: how to make otp generator in python 
Python :: jupyter notebook how to set max display row columns matrix numpy 
Python :: selenium close browser 
Python :: how to make a url shortener in python 
Python :: flash messages django 
Python :: python parse args 
Python :: write set to txt python 
Python :: access to numbers in classification_report - sklearn 
Python :: How to subtract a day from a date? 
Python :: import models 
Python :: print terminal url 
Python :: djangodebug toolbar not showing 
Python :: python wget download 
Python :: python how to get html code from url 
Python :: django load model by name 
Python :: equivalent of ament_index_python in noetic 
Python :: udmi2 roblox 
Python :: how to add multiple dfs to excel sheet 
Python :: flask app example 
Python :: create new column using dictionary padnas 
Python :: ignore module import log in python 
Python :: matplotlib set y lim 
ADD CONTENT
Topic
Content
Source link
Name
1+6 =