pipenv 2018.7.1 版本'module' object is not callable' 问题解决

简介:

当使用 pipenv 在安装依赖包时,出现如下问题,

> pipenv install
Pipfile.lock (ca72e7) out of date, updating to (c2d5f0)...
Locking [dev-packages] dependencies...
Locking [packages] dependencies...
python3.6/site-packages/pipenv/utils.py", line 402, in resolve_deps
    req_dir=req_dir
  File "/Users/helixcs/.pyenv/versions/3.6.5/lib/python3.6/site-packages/pipenv/utils.py", line 250, in actually_resolve_deps
    req = Requirement.from_line(dep)
  File "/Users/helixcs/.pyenv/versions/3.6.5/lib/python3.6/site-packages/pipenv/vendor/requirementslib/models/requirements.py", line 704, in from_line
    line, extras = _strip_extras(line) TypeError: 'module' object is not callable 

检查Python 环境版本。

pipenv 版本

  ~ pipenv --version
pipenv, version 2018.7.1

pip 版本

  ~ pip --version
pip 18.1 from /Users/helix/anaconda3/lib/python3.6/site-packages/pip (python 3.6)

python 版本

  ~ python -V
Python 3.6.3 :: Anaconda custom (64-bit)

参考此 issue, 原来是 pip 版本太高, pipenv 还不支持 18.1 版本,故需要把 pip 版本降级。

pip install 'pip==18.0'

再次运行 pipenv install

> pipenv install
Pipfile.lock (ca72e7) out of date, updating to (c2d5f0)...
Locking [dev-packages] dependencies...
Locking [packages] dependencies...
Installing dependencies from Pipfile.lock (c2d5f0)...
     ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ 58/58 — 00:02:05
  

原文:https://iliangqunru.bitcron.com/post/2018/pipenv-2018.7.1-ban-ben-module-object-is-not-callable-wen-ti-jie-jue

目录
相关文章
|
PyTorch 算法框架/工具
Pytorch出现‘Tensor‘ object is not callable解决办法
Pytorch出现‘Tensor‘ object is not callable解决办法
726 0
Pytorch出现‘Tensor‘ object is not callable解决办法
|
4月前
|
数据处理 Python
【Python】解决tqdm ‘module‘ object is not callable
在使用tqdm库时遇到的“'module' object is not callable”错误,并给出了正确的导入方式以及一些使用tqdm的常见示例。
131 1
|
机器学习/深度学习 自然语言处理 数据可视化
简单的知识图谱可视化+绘制nx.Graph()时报错TypeError: ‘_AxesStack‘ object is not callable
简单的知识图谱可视化+绘制nx.Graph()时报错TypeError: ‘_AxesStack‘ object is not callable
207 0
|
Python
str'object is not callable
str'object is not callable
355 1
|
TensorFlow 算法框架/工具
Tensorflow 出现 ‘Tensor‘ object is not callable解决办法
Tensorflow 出现 ‘Tensor‘ object is not callable解决办法
317 0
Tensorflow 出现 ‘Tensor‘ object is not callable解决办法
|
Python
TypeError: ‘XXXX‘ object is not callable问题的一种可能性
TypeError: ‘XXXX‘ object is not callable问题的一种可能性
318 0
TypeError: ‘XXXX‘ object is not callable问题的一种可能性
TensorRT:AttributeError: 'module' object has no attribute 'Logger'
TensorRT:AttributeError: 'module' object has no attribute 'Logger'
238 0
|
Python
Python错误:'tuple' object is not callable
Python错误:'tuple' object is not callable
285 0
|
4天前
|
JSON Java Apache
Java基础-常用API-Object类
继承是面向对象编程的重要特性,允许从已有类派生新类。Java采用单继承机制,默认所有类继承自Object类。Object类提供了多个常用方法,如`clone()`用于复制对象,`equals()`判断对象是否相等,`hashCode()`计算哈希码,`toString()`返回对象的字符串表示,`wait()`、`notify()`和`notifyAll()`用于线程同步,`finalize()`在对象被垃圾回收时调用。掌握这些方法有助于更好地理解和使用Java中的对象行为。
|
1月前
|
存储 Java 程序员
Java基础的灵魂——Object类方法详解(社招面试不踩坑)
本文介绍了Java中`Object`类的几个重要方法,包括`toString`、`equals`、`hashCode`、`finalize`、`clone`、`getClass`、`notify`和`wait`。这些方法是面试中的常考点,掌握它们有助于理解Java对象的行为和实现多线程编程。作者通过具体示例和应用场景,详细解析了每个方法的作用和重写技巧,帮助读者更好地应对面试和技术开发。
135 4