Qiskit-Textbook 在哪里下载的?

Where was Qiskit-Textbook downloaded?

我已经通过 pip install git+https://github.com/qiskit-community/qiskit-textbook.git#subdirectory=qiskit-textbook-src 安装了 Qiskit-textbook。但是不知道在哪里下载

该命令会安装 Qiskit 教科书 ,这是一个 Python 包,其中包含教科书中使用的一些问题和小部件。您可以使用 pip show <package>:

查看已安装包的位置
pip show qiskit-textbook

输出:

Name: qiskit-textbook
Version: 0.1.0
Summary: A collection of widgets, tools and games for using along
  the Qiskit Textbook. See the textbook and a list of contributors at qiskit.org/textbook
Home-page: UNKNOWN
Author: Qiskit Team
Author-email: hello@qiskit.org
License: UNKNOWN
Location: /usr/local/anaconda3/lib/python3.7/site-packages
Requires: ipython, matplotlib, numpy, qiskit, ipywidgets
Required-by: 

从中我可以看到我的包安装在 /usr/local/anaconda3/lib/python3.7/site-packages

如果你想下载 Jupyter notebooks(即教科书的页面),你可以从 Github page. There is a big green button labelled "code" if you click it, you can either get the link to clone it through git, or download it as a .zip 下载。所有页面都在“内容”文件夹中。