Отменить отключение кеша пипсов
Я случайно побежал с --no-cache-dir
вариант. Теперь я запускаю следующее сообщение об ошибке, когда пытаюсь развернуть проект без сервера.
The directory '/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
The directory '/.cache/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-Uc5FLI/unroll/
Есть ли способ включить кэширование пипсов?
1 ответ
Ты бежал sudo -H pip install
; sudo
побежал pip
как корень и pip
сменил владельца некоторых файлов и каталогов под вашим домашним каталогом. Возьмите файлы обратно:
sudo chown -R $USER $HOME