Create a folder
mkdir myproject
$ cd myproject
Create an environment
Whatever you prefer (e.g. conda or venv)
$ python3 -m venv venv
Activate it
Mac / Linux:
. venv/bin/activate
Windows:
venv\Scripts\activate
Install PyTorch and dependencies
For Installation of PyTorch see official website.
pip install nltk