- whatis
- help
- man
- apropos
- whoami
- which
- date
- history
- find
- Text editor with regular expression support (optional but will save time) - Recommended:
Visual Studio Code
- Browser with devtools - Recommended:
Chrome
- Ability to expand(clicking 🔻) and copy an html element by the requirement-2.
- Go to the web page where the vimeo video is embedded.
- Right click on the video player and then click on inspect element.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get update | |
sudo apt-get install build-essential build-dep python gdb lcov pkg-config libpq-dev \ | |
libbz2-dev libffi-dev libgdbm-dev libnss3-dev libgdbm-compat-dev liblzma-dev \ | |
libncurses5-dev libreadline6-dev libreadline-dev libsqlite3-dev libssl-dev \ | |
lzma lzma-dev tk-dev uuid-dev zlib1g-dev wget | |
# download latest python source code | |
wget https://www.python.org/ftp/python/3.10.4/Python-3.10.4.tgz | |
# unzip the source code | |
tar -xf Python-3.10.4.tgz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt update | |
sudo apt -y upgrade | |
sudo apt install -y python2-dev python2 | |
sudo apt install -y build-essential checkinstall python-dev-is-python3 libffi-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev liblzma-dev libreadline-dev | |
# # tried to install numpy in python3.12 manged by pyenv on pi4b, didn't work | |
# sudo apt install -y libopenblas-dev cmake libblas3 liblapack3 liblapack-dev libblas-dev gfortran libatlas-base-dev | |
sudo pyenv install 3.13.1 |