how to check which version of nltk, scikit learn installed?
import nltk is Python syntax, and as such won’t work in a shell script. To test the version of nltk and scikit_learn, you can write a Python script and run it. Such a script may look like import nltk import sklearn print(‘The nltk version is {}.’.format(nltk.__version__)) print(‘The scikit-learn version is {}.’.format(sklearn.__version__)) # The nltk version … Read more