Open JokerQyou opened 10 years ago
Hi xgenvn!
I've found a way to solve this problem: change line 19 of the file inputhelper.py
.
Before:
args = [location]
After:
args = ['python2', location]
I'd like to open a pull request for this, but I can't do it now. If you see this, please fix this problem and close this issuse, thanks.
Please chmod the files under lib to 775 or 777. On Jun 28, 2014 5:07 PM, "Joker Qyou" notifications@github.com wrote:
Hi I'm using Ubuntu 12.04 64bit, with Sublime Text 2 version 2.0.2 (build 2221) installed. Each time I press Ctrl + Shift + Z, nothing happens, when I press Ctrl + ` to view the console, the following error was printed:
Traceback (most recent call last): File "./sublimeplugin.py", line 362, in run File "./inputhelper.py", line 21, in run File ".\subprocess.py", line 633, in init File ".\subprocess.py", line 1139, in _execute_childOSError: [Errno 13] 权限不够
I've read all the issues under this repo, and found no solution sofar.
This information might also help: when I run python linux_text_input_gui.py in lib folder, the input box does appear, and after pressing Enter, the content is also printed in the terminal.
— Reply to this email directly or view it on GitHub https://github.com/xgenvn/InputHelper/issues/12.
@xgenvn Yeah, that would work too. But why not use full arg list for subprocess? You could not expect every end-user to chmod that file after installing this package.
@JokerQyou I think we should not use the full arg list for subprocess, because it'll depend on python environment of end user. It would be python2, or python3, or anything else, it'll be complicated then. I supposed most of people using this plugin through typing _git clone
@xgenvn Wow, I did not notice that. This plugin is very useful for those who don't want to change their input method. Thanks for your patience.
@xgenvn it works on ubuntu 14.04.
Hi I'm using Ubuntu 12.04 64bit, with Sublime Text 2 version 2.0.2 (build 2221) installed. I installed InputHelper with Package Control. Each time I press
Ctrl + Shift + Z
, nothing happens, when I pressCtrl + `
to view the console, the following error was printed:I've read all the issues under this repo, and found no solution so far.
This information might also help: when I run
python linux_text_input_gui.py
inlib
folder, the input box does appear, and after pressingEnter
, the content is also printed in the terminal.