Hyperledger目前只支持2.7,但是3.6明显对编码解析更好。
所以只好找个快速切换版本的办法了。。。
1 安装Anaconda,注意环境变量的一项要勾选
这里安装Anaconda2(适合python2版本),下载链接:
https://repo.continuum.io/archive/Anaconda2-4.4.0-Windows-x86_64.exe
2 添加Anaconda的TUNA镜像,提高下载包的速度
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
设置搜索时显示通道地址
conda config --set show_channel_urls yes
3 创建一个名为python36的环境,指定Python版本是3.6(不用管是3.6.x,conda会为我们自动寻找3.6.x中的最新版本)
conda create --name python36 python=3.6
安装好后,使用activate激活某个环境
activate python36 # for Windows
source activate python36 # for Linux & Mac
激活后,会发现terminal输入的地方多了python36的字样,实际上,此时系统做的事情就是把默认2.7环境从PATH中去除,再把3.6对应的命令加入PATH
如果想返回默认的python 2.7环境,运行
deactivate python36 # for Windows
source deactivate python36 # for Linux & Mac
删除一个已有的环境
conda remove --name python36 --all
4 conda环境安装包的方法,例如
conda install beautifulsoup4