python 没有名为 ujson 的模块,虽然它已经安装
python No module named ujson, while it's already installed
我已经使用命令 pip install ujson
安装了 ujson
当我尝试 运行 我的 python 投影时 returns
导入错误:没有名为 ujson
的模块
- OS 版本:Red Hat Enterprise Linux Server release 7.2 (Maipo)
- Python版本:Python2.7.6
- pip 列表:ujson (1.35)
有什么帮助吗?
问题是 PYTHONPATH 变量是空的,当我将路径添加到变量时它起作用了。
export PYTHONPATH=$PYTHONPATH:/usr/lib64/python2.7/site-packages
我已经使用命令 pip install ujson
安装了 ujson
当我尝试 运行 我的 python 投影时 returns
导入错误:没有名为 ujson
- OS 版本:Red Hat Enterprise Linux Server release 7.2 (Maipo)
- Python版本:Python2.7.6
- pip 列表:ujson (1.35)
有什么帮助吗?
问题是 PYTHONPATH 变量是空的,当我将路径添加到变量时它起作用了。
export PYTHONPATH=$PYTHONPATH:/usr/lib64/python2.7/site-packages