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 set python path in mac

PYTHONPATH="/Me/Documents/mydir:$PYTHONPATH"
export PYTHONPATH
Comment

PREVIOUS NEXT
Code Example
Python :: datetime one week ago python 
Python :: python read toml file 
Python :: how to sort in pandas 
Python :: install postgres for python mac 
Python :: python send sms 
Python :: polynomial fit in python 
Python :: how to switch python version in ubuntu 
Python :: recursionerror maximum recursion depth 
Python :: pyspark create empty dataframe 
Python :: python minute from datetime 
Python :: how to minimize command console python 
Python :: how to order ints from greatest to least python 
Python :: find elements by class name selenium python 
Python :: selenium proxy python chrome 
Python :: python filter in ailst 
Python :: virtualenv in mac 
Python :: remove column from dataframe 
Python :: python module for converting miles to km 
Python :: matplotlib subplots title 
Python :: get all classes from css file using python 
Python :: python image read 
Python :: Renaming row value in pandas 
Python :: python save list to text 
Python :: django sum get 0 if none 
Python :: qpushbutton text alignment 
Python :: python is not set from command line or npm configuration node-gyp 
Python :: python plot_confusion_matrix 
Python :: pandas split by space 
Python :: difference between two dates in days python 
Python :: Python Enemy NPC CLass 
ADD CONTENT
Topic
Content
Source link
Name
6+5 =