0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

jetson nano上で pip install xxx.whl を試みるもエラーになりました(.whl is not a valid wheel filename)

Posted at

jetson nano上で pip install xxx.whl を試みるもエラーになりました

# wget https://nvidia.box.com/shared/static/yhlmaie35hu8jv2xzvtxsh0rrpcu97yj.whl
# pip install yhlmaie35hu8jv2xzvtxsh0rrpcu97yj.whl 
yhlmaie35hu8jv2xzvtxsh0rrpcu97yj.whl is not a valid wheel filename.

取得したバイナリのファイル名のフォーマットを直して解決

# wget https://nvidia.box.com/shared/static/yhlmaie35hu8jv2xzvtxsh0rrpcu97yj.whl -O  torch-1.4.0-cp27-cp27mu-linux_aarch64.whl
# pip install torch-1.4.0-cp27-cp27mu-linux_aarch64.whl
yhlmaie35hu8jv2xzvtxsh0rrpcu97yj.whl is not a valid wheel filename.

参考

pytorch-for-jetson-version-1-7-0-now-available/72048

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?