-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ModuleNotFoundError: No module named 'maggy.experiment_config' #108
Comments
Hi Catherine, did you try to download the wheel from https://github.com/logicalclocks/maggy/releases/tag/1.0.0rc0 and install it? |
I think it is also important to mention somewhere in the documentation the prerequisites e.g that the library requires Python>=3.7 . This is because in some cases updating a package is not as easy as downloading python and installing it, it a whole process of sending emails to ops teams and waiting for the request to be added in a sprint and things like that, and this can save up some time to get started with the actual work :-). |
Hey @crakama, The requirement of Python>=3.7 is among the PyPi classifiers. |
I upgraded my ipython kernel in jupiterlab from 3.6 to 3.8 and I could install maggy 0.5.3 but seamlessly graded the version I am getting other errors not related to maggy but once the errors are fixed I will test maggy's source code again and see if the problem is solved Otherwise if a python kernel of below 3.7 is used, the package 0.5.3 gets installed and then you will be required to manually install other other dependency packages such as |
Yes like I said, Python 3.7 is a requirement. And like I said please make sure to use an up to date version of pip. |
I have can install maggy on my PySpark cluster from pip but whenever I issue this command
from maggy.experiment_config import OptimizationConfig
I get the errorModuleNotFoundError: No module named 'maggy.experiment_config'
. Any idea of what could be happening. I am using JupiterLab with Python3 Kenrnelfrom maggy import experiment
says no module namedhops
.The imports that I have seen working are from
maggy.ablation import AblationStudy
andfrom maggy import Searchspace
Edit:
I noticed that I cannot use pre-release version (if it has a fix of this that is). I get this error when I try to install the pre-release version
ERROR: Could not find a version that satisfies the requirement maggy==1.0.0rc0 (from versions: 0.0.1, 0.1, 0.1.1, 0.2, 0.2.1, 0.2.2, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.4.0, 0.4.1, 0.4.2, 0.5.0, 0.5.1, 0.5.2, 0.5.3)
ERROR: No matching distribution found for maggy==1.0.0rc0
The text was updated successfully, but these errors were encountered: