5

今天我尝试创建一个新的 python 项目,不使用 Pycharm,使用Python3.2. 但我发现有些不对劲。

当我试图找到我的 python 解释器的路径时,我得到了那个:

Python 3.2 (r32, Apr 18 2018)
>>> import sys
>>> print(sys.executable)
/usr/local/bin/python3.2

所以我把这条路径放在填充部分Base interpreter上。

Windows python 解释器 Pycharm 项目

但是当按下按钮创建项目时,会出现这个错误:

Traceback (most recent call last):
  File "/home/David/pycharm-community-2018.1.1/helpers/packaging_tool.py", line 159, in main
    retcode = do_untar(name)
  File "/home/David/pycharm-community-2018.1.1/helpers/packaging_tool.py", line 100, in do_untar
    tar = tarfile.open(name)
  File "/usr/local/lib/python3.2/tarfile.py", line 1744, in open
    raise ReadError("file could not be opened successfully")
tarfile.ReadError: file could not be opened successfully

有人可以告诉我出了什么问题吗?谢谢。

4

1 回答 1

1

我遇到了完全相同的事情,并在这里找到了答案:

https://intellij-support.jetbrains.com/hc/en-us/community/posts/206601205-Can-t-Install-setuptools-from-within-PyCharm-on-Linux?page=1

您必须编译 zlib 并使用 zlib 头文件路径重新编译 python。

以下是编译 Python 的方法(不要忘记-with-zlib部分):

https://stackabuse.com/install-python-on-mac-osx/#installpythonfromsource

于 2018-10-12T12:07:25.407 回答