Fastai (v2) not working with Jetson Xavier NX

Like i said before cymem is installed.

terminal
e@e-desktop:~/Downloads$ python3 test.py
e@e-desktop:~/Downloads$ sudo python3 test.py
[sudo] password for e:
e@e-desktop:~/Downloads$

test.py
import cymem.cymem

Hi,

Thanks for your trying.

We have confirmed that spaCy is working on Jetson device.
Here are our steps for your reference:

prerequisite

$ /usr/bin/python3 -m pip install --upgrade
$ pip3 install cython

blis

$ wget https://github.com/explosion/cython-blis/files/3566013/blis-0.4.0-cp36-cp36m-linux_aarch64.whl.zip
$ unzip blis-0.4.0-cp36-cp36m-linux_aarch64.whl.zip
$ sudo pip3 install blis-0.4.0-cp36-cp36m-linux_aarch64.whl

spaCy

$ git clone https://github.com/explosion/spaCy
$ cd spaCy
$ export PYTHONPATH=`pwd`
$ pip3 install -r requirements.txt
$ sudo python3 setup.py install

Test

$ python3
Python 3.6.9 (default, Jul 17 2020, 12:50:27)
[GCC 8.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import spacy
>>>

Thanks.

2 Likes

gives the error:“ERROR: You must give at least one requirement to install (see “pip help install”)”.
Do you just mean to upgrade “pip” or “all”?
Thanx Jens