Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error running ':ConqueTerm bash'

I have installed Conque with vundle using the following line:

Bundle 'Conque-Shell'  

However, when I run :ConqueTerm bash I get the folowing error:

Error detected while processing function conque_term#open..conque_term#dependency_check..conque_term#load_python:
line    2:
Traceback (most recent call last):
  File "<string>", line 1, in <module>
IOError: [Errno 2] No such file or directory: '/Users/snowch/.vim/bundle/Conque-Shell/autoload/conque_term/conque_globals.py'
line    3:
Traceback (most recent call last):
  File "<string>", line 1, in <module>
IOError: [Errno 2] No such file or directory: '/Users/snowch/.vim/bundle/Conque-Shell/autoload/conque_term/conque.py'
line   10:
Traceback (most recent call last):
  File "<string>", line 1, in <module>
IOError: [Errno 2] No such file or directory: '/Users/snowch/.vim/bundle/Conque-Shell/autoload/conque_term/conque_screen.py'
line   11:
Traceback (most recent call last):
  File "<string>", line 1, in <module>
IOError: [Errno 2] No such file or directory: '/Users/snowch/.vim/bundle/Conque-Shell/autoload/conque_term/conque_subprocess.py'
An error occurred: bash

It looks as though conque hasn't fully installed because the files it is looking for don't exist:

snowch$ ls /Users/snowch/.vim/bundle/Conque-Shell/autoload/
conque_term.vim

Any ideas?

like image 402
Chris Snow Avatar asked Aug 12 '15 16:08

Chris Snow


2 Answers

First issue in the github page is this. So, you need to use this fork:

Bundle 'lrvick/Conque-Shell'
like image 50
Vitor Avatar answered Oct 01 '22 09:10

Vitor


In the end, I decided to install without vundle, but still automate the install using:

$ vim 'https://conque.googlecode.com/files/conque_2.3.vmb' -c ':so % | q'

See my other question and answer for more info.

like image 28
Chris Snow Avatar answered Oct 01 '22 08:10

Chris Snow