资源准备:Anaconda3-2021.05-Windows-x86_64
链接:https://pan.baidu.com/s/17qzoruYTOYLURfTzTj5tUQ
提取码:yxh1
--来自百度网盘超级会员V1的分享
为了加快conda下载速度,我们将下载通道改为国内源
conda config --remove-key channels
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/main/ conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/ conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/conda-forge/ conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/msys2/ conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/bioconda/ conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/menpo/ conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/pytorch/ conda config --set show_channel_urls yes
conda info
若显示channel URLs的链接为镜像源则成功
如果这是第一次使用Qiskit,那么需要使用以下命令安装虚拟环境
单击CMD.exe Prompt 0.1.1,打开命令行
conda create -n env_name python=3.8
其中env_name为虚拟环境名,可以自定义
conda activate env_name
为了提高下载速度,我们采取清华的镜像
pip install qiskit -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install jupyter -i https://pypi.tuna.tsinghua.edu.cn/simple
jupyter notebook
网页打开后,即可新建文件进行qiskit编程实验