Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

installing python3.8 in rpi

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

installing python3.8 in rpi

sudo apt-get update
sudo apt-get install -y build-essential tk-dev libncurses5-dev libncursesw5-dev libreadline6-dev libdb5.3-dev libgdbm-dev libsqlite3-dev libssl-dev libbz2-dev libexpat1-dev liblzma-dev zlib1g-dev libffi-dev
Comment

installing python3.8 in rpi

wget https://www.python.org/ftp/python/3.8.0/Python-3.8.0.tar.xz
tar xf Python-3.8.0.tar.xz
cd Python-3.8.0
./configure --enable-optimizations --prefix=/usr
make
Comment

installing python3.8 in rpi

sudo make altinstall
Comment

installing python3.8 in rpi

cd ..
sudo rm -r Python-3.8.0
rm Python-3.8.0.tar.xz
. ~/.bashrc
Comment

PREVIOUS NEXT
Code Example
Python :: Add dj_database_url on heroku or production 
Python :: destroy trigger python 
Python :: #adding for loop with tuple and having space 
Python :: how to find 6,6,77,8 in python 
Python :: while loop choosing numbers 
Python :: useful functions in python 
Python :: python with statement variables 
Python :: python source script custom functions 
Python :: Filter xarray (dataarray) 
Python :: or without file pythonmodules.txt 
Python :: add service files in setup.py ROS2 
Python :: current python 
Python :: ipython run script with command line arguments 
Python :: clipping path image using python 
Python :: list of thing same condition 
Python :: dickyfuller test in python 
Python :: How to pass a data frame as parameter to a SQL query in Python? 
Python :: python return true for list comprehension 
Python :: jet 4 access python password 
Python :: multiclass.roc plot title 
Python :: list comprehensions with dates 
Python :: spark dataframe without column 
Python :: extract label from tf data 
Python :: how to select the shortest item in a python list 
Python :: fibonacci using function in python 
Python :: how to move a specific row to last row in python 
Python :: django is .get lazy 
Python :: Form rendering options in django 
Python :: multiply two list in python using lambda 
Python :: take substring of every element in dataframe 
ADD CONTENT
Topic
Content
Source link
Name
1+8 =