Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
776 views
in Technique[技术] by (71.8m points)

python - ModuleNotFoundError: No module named 'jqmcvi'

I get this error when I try the below code

from jqmcvi import base

After getting this error, I have tried

pip install jqmcvi

But then also I get the following error-

ERROR: Could not find a version that satisfies the requirement jqmcvi
ERROR: No matching distribution found for jqmcvi
Note: you may need to restart the kernel to use updated packages.
question from:https://stackoverflow.com/questions/65651240/modulenotfounderror-no-module-named-jqmcvi

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

The library you are trying to install is NOT listed and maintained in PyPI. You can search for the libraries here.

If not listed, you can still install the library directly from git using pip as (at your own risk) -

pip install git+https://github.com/jqmviegas/jqm_cvi.git 

You will git the path to the project available from the github repo of the library.

enter image description here

Once done, you may want to restart your kernel once.


You can otherwise clone the repo, go to the folder and then use python setup.py install

#cd into a folder
git clone https://github.com/jqmviegas/jqm_cvi jqmcvi

#cd into the folder of repo
python setup.py install

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...