使用 pip in 安装 streamlit 时出现错误

Getting errors while installing streamlit usin pip in

我在使用 pip 安装 streamlit 时遇到以下错误。

我该如何解决这个问题。

我可以通过其他方式下载 streamlit 吗?

为了便于理解,我删除了几行代码

      ERROR: Command errored out with exit status 1:
       command: 'c:\users\dell\appdata\local\programs\python\python38-32\python.exe' 'c:\users\dell\appdata\local\programs\python\python38-32\lib\site-packages\pip\_vendor\pep517\_in_process.py' build_wheel 'C:\Users\dell\AppData\Local\Temp\tmp98zgcj_w'
           cwd: C:\Users\dell\AppData\Local\Temp\pip-install-
      copying pyarrow\tests\parquet\test_parquet_writer.py -> build\lib.win32-3.8\pyarrow\tests\parquet
      running build_ext
      creating C:\Users\dell\AppData\Local\Temp\pip-install-8d7399fc\pyarrow_54eefc0597024fa083b65739386c1def\build\temp.win32-3.8
      Traceback (most recent call last):

          cmd_obj.run()
        File "setup.py", line 92, in run
          self._run_cmake()
        File "setup.py", line 280, in _run_cmake
          raise RuntimeError('Not supported on 32-bit Windows')
      RuntimeError: Not supported on 32-bit Windows
      ----------------------------------------
      ERROR: Failed building wheel for pyarrow
    Failed to build pyarrow
    ERROR: Could not build wheels for pyarrow which use PEP 517 and cannot be installed directly

所以根据这个错误消息,您使用的是 32 位 Python?

Pyarrow 仅适用于 64 位操作系统,因此,在我们将其添加为 Streamlit 版本 0.63 中的依赖项后,Streamlit 成为 64 位依赖项!

32位超过64位是故意的吗?如果不是,则您的硬件系统很可能是 64 位的(如果它是在过去 10 年内制造的),切换到 64 位 Python 应该可以解决错误消息。

玛丽莎