我对创建环境非常陌生,而且我在将目录路径设置为正确位置时遇到问题。我在这台机器上安装了Anaconda。
默认情况下,它看起来像是在这里:
[Errno 2]没有这样的文件或目录:'/ Users / examplename / anaconda3 / bin / python'[cmd:['/ Users / examplename / anaconda3 / bin / python',' - u','/ Users / examplename / Desktop / python_work / test_pyenvironment.py']] [dir:/ Users / examplename / Desktop / python_work] [路径:/ usr / bin:/ bin:/ usr / sbin:/ sbin]
当我的anaconda文件位置实际位于:
'MacintoshHD/anaconda3/bin/python'
有没有人知道在尝试查找此根文件夹时如何更改Sublime Text的位置?我对PATH也不太了解,'usr / bin:/ bin:等等'。似乎不对?
考虑到你使用安装了pandas的主要anaconda env,你需要为你的anaconda env设置一个构建系统。就像在this answer和mine中一样,你需要去Tools ▶ Build System ▶ New Build System
并设置你的自定义构建系统:
{
"shell_cmd": "~/anaconda3/bin/python -u $file",
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python",
}
要使用此自定义构建,您必须在构建代码之前选择Tools ▶ Build System ▶ Automatic
或Tools ▶ Build System ▶ <your-custom-build-system-name>
和/或满足Anaconda包的崇高。