You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17-1
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,23 @@ Our program relies on certain APIs that require authentication in order to use i
21
21
Create a file named `.env` (don't forget the period) in your project directory, and fill this with the correct API keys as described on our [wiki page about this](https://github.com/korymath/talk-generator/wiki/Setting-Up-API-Keys).
22
22
23
23
```sh
24
-
source setup.sh
24
+
# Make a new Python 3 virtual environment
25
+
python3 -m venv venv
26
+
27
+
# Activate the virtual environment
28
+
source venv/bin/activate
29
+
30
+
# Upgrade pip and install requirements
31
+
pip install --upgrade pip
32
+
python3 -m pip install -r requirements.txt
33
+
34
+
# Download NLTK dependencies
35
+
python3 -m nltk.downloader punkt averaged_perceptron_tagger
0 commit comments