We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 943bb57 commit 161b98eCopy full SHA for 161b98e
.gitignore
@@ -34,4 +34,7 @@ windows/Debug-OCR/**
34
windows/x64/**
35
36
# Ctags
37
-*.tags*
+*.tags*
38
+
39
+# Vagrant
40
+.vagrant/
Vagrantfile
@@ -0,0 +1,16 @@
1
+Vagrant.configure(2) do |config|
2
+ config.vm.box = "ubuntu/xenial64"
3
4
+ # Uncomment this line if you want to sync other folders
5
+ # config.vm.synced_folder "/home/user/video", "/video"
6
7
+ config.vm.provision "shell", inline: <<-SHELL
8
+ sudo apt-get install -y gcc
9
+ sudo apt-get install -y libcurl4-gnutls-dev
10
+ sudo apt-get install -y tesseract-ocr
11
+ sudo apt-get install -y tesseract-ocr-dev
12
+ sudo apt-get install -y libleptonica-dev
13
+ SHELL
14
15
+end
16
0 commit comments