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
# From http://stackoverflow.com/a/11158224 | |
# Solution A - If the script importing the module is in a package | |
from .. import mymodule | |
# Solution B - If the script importing the module is not in a package | |
import os,sys,inspect | |
current_dir = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe()))) | |
parent_dir = os.path.dirname(current_dir) | |
sys.path.insert(0, parent_dir) |
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
# LUBUNTU 16.04 - MAKE SURE IT IS UPDATED | |
# Sikuli 1.1.3 | |
# Install required packages | |
sudo apt-get install -y default-jre | |
sudo apt-get install -y libopencv-dev tesseract-ocr | |
sudo apt-get install -y xdotool wmctrl | |
## Install sikuli | |
mkdir -p sikuli-install |
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
## Install java8 | |
sudo apt install -y openjdk-8-jre-headless -y | |
## Solve java error - Run following command from command prompt. | |
sudo sed -i 's/^assistive_technologies=/#&/' /etc/java-8-openjdk/accessibility.properties | |
# Or just comment out below line in /etc/java-8-openjdk/accessibility.properties | |
# assistive_technologies=org.GNOME.Accessibility.AtkWrapper | |
## Install other standart libs | |
sudo apt install wmctrl -y |