Nice to meet you. I am developing it on a PC that doesn't have internet. I downloaded 2 packages online because I heard that there is no bcrypt package. I saved it on the PC as a separate delivery program.
One in the form of a pip install name has been successfully installed. However, bcrypt cannot be installed by leaving the following message. What's the cause, coriander, please.
bcrypt-3.2.0-cp36-abi3-win_amd64.whl is not a supported wheel on this platform
Note: Affected PC OS - win10, Python - 3.6
Thank you.
python
bcrypt-3.2.0-cp36-abi3-win_amd64.whl
If you look at the file name, it shows which architecture, which version factor. cp36 is cpython 3.6, win is Windows, and amd64 is 64-bit. And the number of bits here is the number of bits in Python, not the operating system.
The problem is that the operating system is 64 bits, but Python is most likely 32 bits. The Python version is, at its simplest, the first sentence that comes out of the Python dialog box.
The first one is 32-bit and the bottom one is 64-bit.
C:\Users\userme>py -3.7-32
Python 3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:01:55) [MSC v.1900 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()
C:\Users\userme>py -3.7
Python 3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()
© 2024 OneMinuteCode. All rights reserved.