运行 深思 nvidia jetson - "Could not find a version that satisfies the requirement torchvision>=0.8.2"

Running deep-daze on nvidia jetson - "Could not find a version that satisfies the requirement torchvision>=0.8.2"

我有一个 nvidia Jetson Nano(4GB 版本)。我正在尝试 运行 这个项目:https://github.com/lucidrains/deep-daze

我正在尝试 运行 命令 pip install deep-daze。但是,我没有 pip,所以我 运行ning pip3 install deep-daze。当我 运行 我得到

chris@chris-desktop:~$ pip3 install deep-daze
Collecting deep-daze
  Using cached https://files.pythonhosted.org/packages/f1/ed/b3f3d9d92f5a48932b3807f683642b28da75722ae93da2f9bdc6af5f1768/deep_daze-0.7.2-py3-none-any.whl
Collecting tqdm (from deep-daze)
  Downloading https://files.pythonhosted.org/packages/f8/3e/2730d0effc282960dbff3cf91599ad0d8f3faedc8e75720fdf224b31ab24/tqdm-4.59.0-py2.py3-none-any.whl (74kB)
    100% |████████████████████████████████| 81kB 2.4MB/s 
Collecting torchvision>=0.8.2 (from deep-daze)
  Could not find a version that satisfies the requirement torchvision>=0.8.2 (from deep-daze) (from versions: 0.1.6, 0.1.7, 0.1.8, 0.1.9, 0.2.0, 0.2.1, 0.2.2, 0.2.2.post2, 0.2.2.post3)
No matching distribution found for torchvision>=0.8.2 (from deep-daze)

我对这里的几个活动部分很不熟悉,不知道如何解决这个问题。我认为这些版本号可能有助于回答这个问题:

chris@chris-desktop:~$ python3 --version
Python 3.6.9
chris@chris-desktop:~$ pip3 --version
pip 9.0.1 from /usr/lib/python3/dist-packages (python 3.6)
chris@chris-desktop:~$ python2 --version
Python 2.7.17
chris@chris-desktop:~$ pip2 --version
bash: pip2: command not found
chris@chris-desktop:~$ pip --version
bash: pip: command not found
chris@chris-desktop:~$ cat /etc/os-release
NAME="Ubuntu"
VERSION="18.04.5 LTS (Bionic Beaver)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 18.04.5 LTS"
VERSION_ID="18.04"
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
VERSION_CODENAME=bionic
UBUNTU_CODENAME=bionic

多亏了 Elbek 的评论,我才开始工作!我能够按照此处的指南进行操作:https://forums.developer.nvidia.com/t/pytorch-for-jetson-version-1-8-0-now-available/72048

不幸的是,在我安装完所有东西后,我 运行 遇到内存不足的问题,但是,所有东西都安装好了。