ky2k commited on
Commit
0d5e2ff
·
1 Parent(s): 70ef81b

- removed sudo command

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,8 +1,8 @@
1
  import subprocess
2
 
3
  # Install hunspell and its dependencies, pip wheels are completely broken
4
- subprocess.call(['sudo', 'apt', 'install', 'hunspell', 'hunspell-uk', 'libhunspell-dev'])
5
- subprocess.call(['sudo', 'pip', 'install', 'hunspell'])
6
 
7
  # Import hunspell
8
  import hunspell
 
1
  import subprocess
2
 
3
  # Install hunspell and its dependencies, pip wheels are completely broken
4
+ subprocess.call(['apt', 'install', 'hunspell', 'hunspell-uk', 'libhunspell-dev'])
5
+ subprocess.call(['pip', 'install', 'hunspell'])
6
 
7
  # Import hunspell
8
  import hunspell