[Solved] fasttext package installation

question

Fasttext is needed for experiments, and it was not installed successfully when using the pip conda installation command
insert image description here
insert image description here

Solution

  1. download zip file

Enter the following third-party package website (There are a lot of resources on it, I recommend you bookmark this URL), download the corresponding compressed package according to your own version
https://www.lfd.uci.edu/~gohlke/pythonlibs/#fasttext

insert image description here
My environment is 64-bit python 3.7. I chose fasttext-0.9.2-cp37-cp37m-win_amd64.whl to download and save to the desktop

  1. Install

win+R to enter the console;
cd Desktop to enter the desktop;
run the following command to install:

pip install fasttext-0.9.2-cp37-cp37m-win_amd64.whl

insert image description here

Guess you like

Origin blog.csdn.net/TommyXu8023/article/details/109236515