我正在尝试通过我的vevn中的requirements.txt安装pip软件包“ Log-Reader”。但是它使用了缓存并且没有安装。
首先我尝试
pip install -r requirements.txt
输出:
Collecting Log-Reader==2.0
Using cached Log_Reader-2.0-py3-none-any.whl (6.7 kB)
然后我尝试了
pip install --no-cache-dir -r requirements.txt
输出
Collecting Log-Reader==2.0
Downloading Log_Reader-2.0-py3-none-any.whl (6.7 kB)
(*without the progress bar as below*)
Collecting pycparser==2.20
Downloading pycparser-2.20-py2.py3-none-any.whl (112 kB)
|████████████████████████████████| 112 kB 8.0 MB/s
我做了
pip freeze
无论哪种方式,都不会注册Log-Reader
当我进一步进入文档和论坛时,它表示最好删除〜/ .cache / pip中的缓存。
有人可以帮忙吗?任何建议