没有pip还有其他下载包的过程吗?

问题描述 投票:0回答:4

我一直在下载

pip install fiona
软件包,但它仍然没有下载到我的Windows 10系统上。

1.帮助下载fiona包

2.如何控制pip上的缓存包

python django windows pip package
4个回答
0
投票

您可以使用anaconda下载软件包conda install -c conda-forge fiona


0
投票

是的!我们可以在

pip
的帮助下下载任何没有
pipwin
的软件包。

pip install wheel
pip install pipwin

并在您的帮助下可以下载..

pipwin install gdal
pipwin install fiona
pip install geopandas

0
投票

我们可以通过以下步骤忽略下载 pip 缓存包....

1.从缓存中删除包

pip cache remove matplotlib

2.从pip的缓存中清除所有wheel文件。

pip cache purge

3.获取缓存的位置。

pip cache dir

4.不使用缓存安装包

pip install --no-cache-dir scipy

5.配置 pip 不“全局”使用缓存

pip config set global.no-cache-dir false

  1. 清除 pip 中的所有包

pip freeze | xargs pip uninstall -y


0
投票
  1. 对于 Windows 用户,这是我在 Windows PowerShell 上使用的

    pip uninstall -y(pip freeze)

  2. C:\Users4_0521\AppData\Local\pip

删除 pip 目录

© www.soinside.com 2019 - 2024. All rights reserved.