I am on M1 and managed to go around this in the following way:
I installed a rust compiler using brew, and then initialized it.
brew install rustup
rustup-init
Then I restarted the console and checked if it is installed: rustc --version . It turned out you also have to setup the path:
export PATH="$HOME/.cargo/bin:$PATH"
from https://github.com/huggingface/tokenizers/issues/1050
'Coding Languages > Python' 카테고리의 다른 글
[Python] How to install Anaconda in Ubuntu (WSL2) (0) | 2022.06.02 |
---|