我尝试使用pip在虚拟环境中安装软件包
当我运行$ pip freeze
时,我可以看到包blockcypher==1.0.30
在我的venv中,它也在venv的站点包文件夹中
但是当我尝试将模块导入我的脚本时
from blockcypher import *
我得到一个ImportError:没有名为blockcypher的模块
如果我像这样在终端中运行python:
>>> import blockcypher
>>> help(blockcypher)
我可以看到它位于
/Users/flexmaster411/Documents/lacag_first/venv/lib/python2.7/site-packages/blockcypher/的初始化的.py
供参考我的脚本位于
/用户/ flexmaster411 /文档/ lacag_first / MyScript可 P>