Невозможно установить openslide-python на Google datalabs Блокнот Jupyter
Я пытаюсь установить openslide-python на gat datalabs блокнот Jupyter, используя:! Apt-get install python-openslide
Он работает, пока не распечатает:
Need to get 13.0 MB of archives.
After this operation, 44.7 MB of additional disk space will be used.
Do you want to continue? [Y/n]
Я набираю Y в следующей ячейке и нажимаю кнопку run. Он говорит, что работает... но ничего не происходит. Как это сделать, чтобы установить Python-openslide здесь?
1 ответ
Решение
Пожалуйста, вы можете попробовать следующее, которое включает в себя -y
вариант?
!apt-get install -y python-openslide
Вот определение -y
вариант для apt-get
с http://manpages.ubuntu.com/manpages/wily/man8/apt-get.8.html.
-y, --yes, --assume-yes Automatic yes to prompts; assume "yes" as answer to all prompts and run non-interactively. If an undesirable situation, such as changing a held package, trying to install a unauthenticated package or removing an essential package occurs then apt-get will abort. Configuration Item: APT::Get::Assume-Yes.