Python 使用pipenv进行无模块安装后,不存在无模块

Python 使用pipenv进行无模块安装后,不存在无模块,python,python-3.x,Python,Python 3.x,我尝试用pipenv在Python3.5.2中安装theano 安装收集的软件包:theano 已成功安装theano-1.0.1 Adding theano to Pipfile's [packages]… Pipfile.lock (4eb1d4) out of date, updating to (3c6e07)… Locking [dev-packages] dependencies… Locking [packages] dependencies… Updated Pipfile.lo

我尝试用pipenv在Python3.5.2中安装theano 安装收集的软件包:theano 已成功安装theano-1.0.1

Adding theano to Pipfile's [packages]…
Pipfile.lock (4eb1d4) out of date, updating to (3c6e07)…
Locking [dev-packages] dependencies…
Locking [packages] dependencies…
Updated Pipfile.lock (3c6e07)!
Installing dependencies from Pipfile.lock (3c6e07)…
  ================================ 26/26 - 00:00:44
To activate this project's virtualenv, run the following:
 $ pipenv shell
我试图运行一个简单的import theano,但windows cmd显示以下内容

C:\Users\abc\AppData\Local\Programs\Python\Python35\pipenvtests>C:\Users\abc\AppData\Local\Programs\Python\Python35\Scripts\pipenv.exe run C:\Users\abc\AppData\Local\Programs\Python\Python35\python.exe C:\Users\abc\AppData\Local\Programs\Python\Python35\pipenvtests\kr.py
Traceback (most recent call last):
  File "C:\Users\abc\AppData\Local\Programs\Python\Python35\pipenvtests\kr.py", line 1, in <module>
    import theano
ImportError: No module named 'theano'
C:\Users\abc\AppData\Local\Programs\Python35\pipentests>C:\Users\abc\AppData\Local\Programs\Python35\Scripts\pipenv.exe运行C:\Users\abc\AppData\Local\Programs\Python35\Python.exe C:\Users\abc\AppData\Local\Programs\Python35\pipenvtests\kr.py
回溯(最近一次呼叫最后一次):
文件“C:\Users\abc\AppData\Local\Programs\Python\Python35\pipenvtests\kr.py”,第1行,在
进口茶
ImportError:没有名为“theano”的模块
有人知道为什么会发生这种情况吗?我在谷歌上搜索了一下,但没有找到足够的关于pipenv的信息。 谢谢