You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Pip installing the package, then importing with import bayex yields the error ModuleNotFoundError: No module named 'bayex.src'
To Reproduce
Create virtual env with python3.10.5 -m venv .venv
Activate virtual environment with source .venv/bin/activate
Install bayes pip install bayex
Try to import import bayex
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Users/thomasfoster/Documents/simplicity_is_all_you_need/.venv/lib/python3.10/site-packages/bayex/__init__.py", line 1, in <module>
from bayex.src.optimizer import Optimizer, OptimizerState
ModuleNotFoundError: No module named 'bayex.src'```
Cloning the repo and installing with `pip install .` works, but then run into many errors with imports, such as cannot import domain from Bayex
The text was updated successfully, but these errors were encountered:
Describe the bug
Pip installing the package, then importing with
import bayex
yields the errorModuleNotFoundError: No module named 'bayex.src'
To Reproduce
Create virtual env with
python3.10.5 -m venv .venv
Activate virtual environment with
source .venv/bin/activate
Install bayes
pip install bayex
Try to import
import bayex
The text was updated successfully, but these errors were encountered: