无法导入pip模块

问题描述 投票:0回答:1

在python上编码时,我遇到了使用PIP导入模块的问题。问题是我无法导入单个模块,例如“camelcase”。有人会帮助我吗?

import camelcase

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

预计输出将是“Hello World”。但是有一个错误:

回溯(最近一次调用最后一次):文件“mycode.py”,第1行,导入camelcase ModuleNotFoundError:没有名为'camelcase'的模块

python import python-3.7
1个回答
1
投票

ModuleNotFoundError:没有名为'camelcase'的模块。错误明确表示你需要安装camelcase包

official docs of camelcase package

virtual env set up

使用以下命令:

pip install camelcase

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

你也可以做,而不是第三方包

print(txt.title())
© www.soinside.com 2019 - 2024. All rights reserved.