Chris Snow
Chris Snow

Reputation: 24606

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?

Upvotes: 5

Views: 1977

Answers (2)

Vitor
Vitor

Reputation: 1976

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

Bundle 'lrvick/Conque-Shell'

Upvotes: 11

Chris Snow
Chris Snow

Reputation: 24606

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.

Upvotes: 1

Related Questions