Skip to content

Instantly share code, notes, and snippets.

@sk187
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sk187/d793a61120f0b036a5a6 to your computer and use it in GitHub Desktop.
Save sk187/d793a61120f0b036a5a6 to your computer and use it in GitHub Desktop.
Install NLPK, LDA and Beautiful Soup for Sublime REPL
# This guide is for people who have install Sublime REPL and linked their system Python to it.
# If you haven't but want to, refer to my previous post where I show you how.
# If you are using Python 3 and still have Python 2 installed on your system as default
# For NLTK
python3 -m pip install -U nltk
# For LDA
python3 -m pip install lda
#For Beautiful Soup
python3 -m pip install beautifulsoup4
#________________________________________________________________________________________
# python2 -m pip install PACKAGE NAME will allow you to install packages for Python 2
# If you are only running one version of Python, you can just type pip install PACKAGE NAME
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment