我参加了一个python课程,我在/ this / is / where /我保存/ exercise / exercise.py中保存了练习脚本。
现在每当我在终端输入python
时,它立即给我这个:
IOError: [Errno 2] No such file or directory: '/this/is/where/I save/exercises/exercise.py'
我知道自从我删除文件后找不到它。但是为什么python在运行时会运行该脚本?这太烦人了。
INFO
Linux OS
Python2和Python3都显示相同的错误
答案 0 :(得分:0)
谢谢,@ JoranBeasley,@ barunsthakur,@ PadraicCunningham等等。
我在PYTHONSTARTUP
设置了.bashrc
。
将来可以帮助健忘的人。
答案 1 :(得分:-1)
如果您使用的是类UNIX系统,如Linux或Mac,我怀疑您可能有别名或错误配置的PATH。通过运行开始调查:
which python # which program is run when you type in python?
和
alias # what are the aliases for the shell?
答案 2 :(得分:-1)
Python有一个在启动时运行的特殊脚本。在我的平台上,它位于 /usr/lib/python2.5/site-packages/sitecustomize.py IIRC。您可能希望检查该文件是否有对该目录的任何脚本调用。此外,如果您使用的是Linux计算机,则可以检查 / etc / bashrc 或 /etc/profile.d 。如果这样做无效,请尝试使用更具体的信息更新您的问题。