0
virtualenv
とvirtualenvwrapper
を私のDjangoプロジェクトで使用しようとしています。私はというvirtualenv
にdjango-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]:~$
私は自分のプロジェクトを実行すると、ユーザーはサイトの入力フォームでのオートコンプリートフィールドを入力したときには、virtualenv
でdjango-selectable
を直撃しています。
をありがとうございました。角括弧を削除するとそれが実行されました。 – BillB1951