I've tried to install sammo on my m1 macbook using
poetry install
and using
pip install sammo jupyter
but when I try to run the any of the notebooks I get
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
Cell In[4], line 3
1 # %load -r :27 _init.py
2 import pathlib
----> 3 import sammo
4 from sammo.runners import OpenAIChat
5 from sammo.base import Template, EvaluationScore
File ~/PycharmProjects/github/sammo/sammo/__init__.py:4
1 # Copyright (c) Microsoft Corporation.
2 # Licensed under the MIT License.
3 import logging
----> 4 import beartype
5 import sammo.utils as utils
6 from pathlib import Path
even though:
(sammo-py3.11) datascience@headsmac sammo % pip show beartype
Name: beartype
Version: 0.15.0
Summary: Unbearably fast runtime type checking in pure Python.
Home-page: https://beartype.readthedocs.io
Author: Cecil Curry, et al.
Author-email: leycec@gmail.com
License: MIT
Location: /Users/datascience/Library/Caches/pypoetry/virtualenvs/sammo-I0aNzNSL-py3.11/lib/python3.11/site-packages
Requires:
Required-by: sammo
(sammo-py3.11) datascience@headsmac sammo %
I've tried to install sammo on my m1 macbook using
poetry install
and usingpip install sammo jupyter
but when I try to run the any of the notebooks I geteven though: