- As of 9/2019, it's not possible to use
pipenv install python3-opencv
to install OpenCV v4. - As of 9/2019,
pipenv install opencv-contrib-python
installs OpenCV v3.4. - As of 10/2019, PiWheels still only has 3.4.3.18 listed for
cp37m
foropencv-contrib-python
- See: https://www.piwheels.org/project/opencv-contrib-python/ to check status
- This is a modified set of instructions on how build OpenCV v4 from source, onRaspberry Pi 4, Buster
This file contains 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
import paramiko, socks | |
# PySocks recommends using no arguments, | |
# because it only supports the defaults anyway. | |
sock = socks.socksocket() | |
host, port = '127.0.0.1', 1234 | |
# Set up your proxy information for this socket | |
sock.set_proxy( |
This file contains 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
import paramiko, socks | |
# PySocks recommends using no arguments, | |
# because it only supports the defaults anyway. | |
sock = socks.socksocket() | |
host, port = '127.0.0.1', 1234 | |
# Set up your proxy information for this socket | |
sock.set_proxy( |
This file contains 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
# Our .tmux.conf file | |
# Setting the prefix from C-b to C-a | |
# START:prefix | |
#set -g prefix C-] | |
set -g prefix 'C-\' | |
# '<--Need this quote for emacs syntax highlight bug | |
# END:prefix | |
# Free the original Ctrl-b prefix keybinding | |
# START:unbind |
sudo apt-get update
sudo apt-get install emacs
git clone https://github.com/pyenv/pyenv.git ~/.pyenv
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.profile
echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.profile
echo -e 'if command -v pyenv 1>/dev/null 2>&1; then\n eval "$(pyenv init -)"\nfi' >> ~/.profile
- log out and back in
OlderNewer