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 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 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
| # 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 |