Skip to content

Instantly share code, notes, and snippets.

View mFoxRU's full-sized avatar
🀄
🀄

Mikhail mFoxRU

🀄
🀄
  • Russia, Saint-Petersburg
View GitHub Profile
@mFoxRU
mFoxRU / python-3.6-pi.sh
Last active July 15, 2021 17:10 — forked from slendidev/python-3.6-pi.sh
Install python 3.6 on your RPi!
sudo apt-get update
sudo apt-get install 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 -y
wget https://www.python.org/ftp/python/3.6.4/Python-3.6.4.tar.xz
tar xf Python-3.6.4.tar.xz
cd Python-3.6.4
./configure
make -j4
sudo make altinstall
echo "Do you wish to delete the source code and uninstall all previously installed packages? {Y/N} (Case sensitive!)"
# This is a raw listing of the imports that take place dynamically by calling
# the pyqtgraph/__init__.py:importAll() in the following scenarios:
#importAll('graphicsItems', globals(), locals())
#importAll('widgets', globals(), locals(), excludes=['MatplotlibWidget', 'RemoteGraphicsView'])
from .graphicsItems.ArrowItem import ArrowItem
from .graphicsItems.GraphicsWidgetAnchor import GraphicsWidgetAnchor
from .graphicsItems.GraphicsWidgetAnchor import Point
from .graphicsItems.GraphicsWidgetAnchor import QtCore