⊗pyPmEvDe 94 of 128 menu

Closing a Virtual Environment in Python

After finishing working with the virtual environment, it must be closed (deactivated). This can be done using the following command:

deactivate

And to resume working with the environment, you will simply need to activate it:

..\Scripts\activate # for Windows source ../bin/activate # for Linux

Deactivate the virtual environment you created.

enru