2012-02-18 15 views
0

virtualenvvirtualenvwrapperを私のDjangoプロジェクトで使用しようとしています。私はというvirtualenvdjango-selectableパッケージをインストールしました。私のDjangoプロジェクトは仮想環境にはありません。私のホームディレクトリの下にあります。virtualenv/virtualenvwrapper/django-selectable

virtualenvwrapperコマンドsetvirtualenvprojectを実行しようとすると、メッセージが表示されます(下記参照)。しかし、私にはファイルが存在するように見えます。私は間違って何をしていますか?端末から

[email protected]:~$ 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 
[email protected]:~$ 

私は自分のプロジェクトを実行すると、ユーザーはサイトの入力フォームでのオートコンプリートフィールドを入力したときには、virtualenvdjango-selectableを直撃しています。

答えて

1

ドロップブラケット、実行します。

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

の代わりに:

setvirtualenvproject [/home/bill/.virtualenvs/selectable /home/bill/workspace/boatsite] 
+0

をありがとうございました。角括弧を削除するとそれが実行されました。 – BillB1951