2016-08-13 2 views
0

私はPythonの初心者です。rmvirtualenv <name> envを削除しない

私はCの下で、このコマンドを使用して、前に作成したvirtualenvのを削除しようとしています:>は

rmvirtualenv test 

をvirtualenvsして、私は次の

virtualenvの「テスト」は存在しませんです。

virtualenvsの下に表示されているディレクトリは引き続き表示されます。私はWindowsプラットフォーム上にあり、すでにvirtualwrapper-winをインストールしています。

上記のコマンドを使用して、どのようにenvを取り除くことができますかをお勧めします。

+1

virtualenvwrapperで仮想環境を作成してもよろしいですか? – mic4ael

+1

http://stackoverflow.com/questions/11005457/how-do-i-remove-delete-a-virtualenv – Harrison

+0

@ mic4aelいいえ、私はしません。その仮想環境が最初に作成された後、virtualenvwrapperをCドライブの直下にインストールしました。 – Raj

答えて

0

私はこの問題を整理しました。あなたを考慮

は、すでにインストールされているvirtualenvwrapperウィン

(Windowsの場合)のステップがある - これだけです

1.Go to directory 'virtualenvs' (where all the envs are listed) 
2.Make an env by using this command -- mkvirtualenv test (where test is a env name in my case) 
3. Use this command -- workon test 
4. Deactivate test 
5. To remove test use this command -- rmvirtualenv test 

関連する問題