今天我尝试创建一个新的 python 项目,不使用 Pycharm,使用Python3.2
. 但我发现有些不对劲。
当我试图找到我的 python 解释器的路径时,我得到了那个:
Python 3.2 (r32, Apr 18 2018)
>>> import sys
>>> print(sys.executable)
/usr/local/bin/python3.2
所以我把这条路径放在填充部分Base interpreter上。
但是当按下按钮创建项目时,会出现这个错误:
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
有人可以告诉我出了什么问题吗?谢谢。