How do I remove/delete a virtualenv?

前端 未结 16 1020
感动是毒
感动是毒 2020-11-29 14:25

I created an environment with the following command: virtualenv venv --distribute

I cannot remove it with the following command: rmvirtualenv venv

16条回答
  •  心在旅途
    2020-11-29 15:13

    Simply remove the virtual environment from the system.There's no special command for it

    rm -rf venv
    

提交回复
热议问题