After installing unsloth locally and trying to import it, i receice the error below.
from unsloth import FastLanguageModel
ModuleNotFoundError Traceback (most recent call last)
Cell In[9], line 1
----> 1 from unsloth import FastLanguageModel
File c:\Users\USER\anaconda3\envs\myenv\Lib\site-packages\unsloth_init_.py:101
97 import bitsandbytes as bnb
99 if "SPACE_AUTHOR_NAME" not in os.environ and "SPACE_REPO_NAME" not in os.environ:
--> 101 import triton
102 libcuda_dirs = lambda: None
103 if Version(triton.version) >= Version("3.0.0"):
ModuleNotFoundError: No module named 'triton'
Trying to install triton does not work either, trying to pip install it I receive the error below:
ERROR: Could not find a version that satisfies the requirement triton (from versions: none)
ERROR: No matching distribution found for triton
Any thouhgts?