我使用pip在python中安装了camelcase软件包

时间:2018-10-14 20:00:12

标签: python python-3.x

但是当我导入camelcase并运行代码时,我看到一个错误:

  

ModuleNotFoundError:没有名为“ camelcase”的模块

仅出于信息目的,我编写代码的文件位于其他位置。

我在Python中非常绿,所以请帮助我解决此错误,

import camelcase
c = CamelCase()
txt = "hello world"
print(c.hump(txt))

2 个答案:

答案 0 :(得分:0)

您安装了骆驼套吗?如果您使用的是虚拟环境,是否正在使用安装它的环境?

您可以通过在命令行上运行const initialState = {}; interface Action { type: string; bestResults: [] } export const listingReducer = (state = initialState, action: Action) => { switch (action.type) { case "GET_SUCCESS": return { ...state, bestResults: action.bestResults, searchError: false }; case "GET_ERROR": return { ...state, searchError: true }; default: return state; } }; 来检查安装的内容。

答案 1 :(得分:0)

问题与您的导入有关,请尝试以下操作:

from camelcase import CamelCase
c = CamelCase()
txt = "hello world"
print(c.hump(txt))

输出:

Hello World