Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ERROR: No matching distribution found for wheel (dash-bootstrap-components)

Tags:

python

pip

I am trying to install packages in an offline manner. However, when I downloaded all packages and tried to install these packages on another computer, some error has emerged as shown in the following figure. This seems like it is failed to install the "dash-bootstrap-components" package. How can I solve it?

By the way, the "dash-bootstrap-components" package is packaged as a "tar.gz" file, does this causes the failure?

The following commands can reproduce the problem even on the same computer:

pip download dash-bootstrap-components
pip install --no-index --find-links ./ dash-bootstrap-components

My goal is to configure a python environment on a network-free computer. If this method is unavailable, is there any other methods that can work around it?

Error

Package

like image 887
zhenlingcn Avatar asked Feb 03 '23 14:02

zhenlingcn


1 Answers

I have solved this problem by manually download the "wheel" package from the internet and put it into the folder. enter image description here

like image 192
zhenlingcn Avatar answered Feb 06 '23 15:02

zhenlingcn