Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 Windows 机器和 tensorflow 映像上有一个 Docker。我可以运行 jupyter notebook 但不知道如何将其他 python 包安装到我的 docker 容器中
经过一番调查,我找到了解决方案。要运行 docker 容器,请使用以下命令:
$ docker run -it -p 8888:8888 gcr.io/tensorflow/tensorflow bash
Bash 将允许在容器中运行一些命令。因此,您可以使用pip安装 python 包:
pip
pip install Pillow
如果您需要更新 pip,请运行:
python -m pip install -U pip
最后一步是运行 jupyter notebook:
jupyter notebook