Bioinformatics
- Bioinformatics Methods I, Coursera: Go through the materials of week 3.
- In order to apply Natural Language Processing (NLP) to biomedical fields, you will have to learn a programming language- Python and a platform- Natural Language Toolkit (NLTK).
- Go to https://www.python.org/downloads/ to download and install the most recent version (3.5.2) of Python.
- Launch the "Terminal" in the Applications > Utilities folder. In the terminal, run the following commands: (Let me know if you have any problem. I have tried a few times, and finally made it work.)
- Install pip: run
sudo easy_install pip
- Install NLTK: run
sudo pip install -U nltk
- Install Numpy: run
sudo pip install -U numpy
- Run Python: run
python
- Test installation: type
import nltk
- Install pip: run
- Now, you can go to http://www.nltk.org/, and follow the "Some simple things you can do with NLTK".
No comments:
Post a Comment