Skip to main content
added 126 characters in body
Source Link
MindSwipe
  • 8k
  • 1
  • 27
  • 59

The problem is quite clear:

Your Rust target architecture (64-bit) does not match your python interpreter (32-bit)

Either upgrade your Python interpreter to 64 bit, or use rustup to install a 32 bit Rust target

Edit: Here is how you could manually target 32 bit on a x86_64 machine

The problem is quite clear:

Your Rust target architecture (64-bit) does not match your python interpreter (32-bit)

Either upgrade your Python interpreter to 64 bit, or use rustup to install a 32 bit Rust target

The problem is quite clear:

Your Rust target architecture (64-bit) does not match your python interpreter (32-bit)

Either upgrade your Python interpreter to 64 bit, or use rustup to install a 32 bit Rust target

Edit: Here is how you could manually target 32 bit on a x86_64 machine

Source Link
MindSwipe
  • 8k
  • 1
  • 27
  • 59

The problem is quite clear:

Your Rust target architecture (64-bit) does not match your python interpreter (32-bit)

Either upgrade your Python interpreter to 64 bit, or use rustup to install a 32 bit Rust target