Virtual Environment

Report a typo

Familiarize yourself with the official docs on the virtual environments in Python and arrange the lines of code below in the correct order. What you want to do is create and activate the virtual environment called my_venv, install the NLTK library (without any version specification), and then deactivate the environment.

Put the items in the correct order
my_venv\\Scripts\\activate.bat
python3 -m venv my_venv
deactivate
python -m pip install nltk
___

Create a free account to access the full topic