-
Notifications
You must be signed in to change notification settings - Fork 26
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
"No module named 'fastllama.api' " after pip installation #78
Comments
Can you please let me know your OS and Hardware? |
Same issue: windows 10, NVIDIA GeForce RTX 3060 12gb, 16gb ram, intel processor |
I'm sorry for not getting back to you sooner. I was busy with Webui. We do not support Windows right now, but we hope to do so in the future. So, for right now, I recommend using WSL. If none of this is true, let us know. |
I get same error in wsl 2 |
Could you send me the logs that are generated when installed with pip? Also, could you go inside that Python site-packages and share the file list? |
I get the following errors from my make install
|
Update the compiler. |
Thanks! I was using standard GCC-9 Ubuntu 22.04. I used |
is fastllama support windows now? |
no, or at least not for me yet, I'm getting the same issue still |
I installed it following the README with:
$ pip3 install git+https://github.com/PotatoSpudowski/fastLLaMa.git@main
Installation went fine but when I try to use it:
$ iPython3
Python 3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]
Type 'copyright', 'credits' or 'license' for more information
IPython 8.13.1 -- An enhanced Interactive Python. Type '?' for help.
In [1]: from fastllama import Model
ModuleNotFoundError Traceback (most recent call last)
Cell In[1], line 1
----> 1 from fastllama import Model
File /usr/local/lib/python3.10/dist-packages/fastllama/init.py:2
1 import os;
----> 2 from .api import *
4 set_library_path(os.path.dirname(os.path.abspath(file)))
ModuleNotFoundError: No module named 'fastllama.api'
The text was updated successfully, but these errors were encountered: