anaconda developed by python and the method of installing gensim under win7

  • 2021-07-10 20:00:50
  • OfStack

1. Anaconda is recommended

Official introduction: Anaconda is a completely free Python distribution (including for commercial use and redistribution). It includes more than 400 of the most Python packages for science, math, engineering, and data analysis.

Download page: https://www.continuum.io/downloads

Some modules of Python may be very troublesome to install separately, while many common modules have been integrated in Anaconda, which is very convenient to use.

python does not need to be pre-installed before installing Anaconda, which already comes with Python, IPython, integrated development environment Spyder, 1 package and so on.

conda commands that come with anaconda:


#  View installed packages 
conda list
#  Installation module 
conda install scipy
#  Update module 
conda update scipy
#  Update all modules 
conda update --all
#  Upgrade Anaconda
conda update conda
conda update anaconda

2. gensim installation

Because you need to learn to use word2vec, install the gensim module.

When installing gensim library with traditional python, it failed after trying many tutorials because there are many dependent libraries.

After installing Anaconda with the above, direct pip install gensim is successful.


Related articles: