I am trying to use virtualenv, and virtualenvwrapper, with my Django project. I have installed the django-selectable package in a virtualenv named selectable. My django project is not in a virual environment. It is located below my home directory. I get a message (see below) when I try to run the following virtualenvwrapper command 'setvirtualenvproject'. However, to me it appears that the file does exist. What am I doing wrong.

from terminal

bill@ubuntu:~$ setvirtualenvproject [/home/bill/.virtualenvs/selectable /home/bill/workspace/boatsite]

Setting project for selectable to /home/bill/workspace/boatsite]

bash: [/home/bill/.virtualenvs/selectable/.project: No such file or directory

bill@ubuntu:~$

#

I want to run my project and have it hit django-selectable in the virtualenv when users enter autocomplete fields in the site's input forms.

link|improve this question

12% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Drop the brackets, run:

setvirtualenvproject /home/bill/.virtualenvs/selectable /home/bill/workspace/boatsite

Instead of:

setvirtualenvproject [/home/bill/.virtualenvs/selectable /home/bill/workspace/boatsite]
link|improve this answer
Thanks. Dropping the brackets did it. – BillB1951 Mar 2 at 13:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.