“在Windows PowerShell上如何执行 ‘export PYTHONPATH=.’?”

huangapple go评论63阅读模式
英文:

How to do "export PYTHONPATH=." on windows powershell?

问题

在Linux会话中,我可以像这样设置环境变量:

export PYTHONPATH=.

在Windows Powershell中如何做到这一点?我找到了此链接并尝试了以下两种方法:

[Environment]::SetEnvironmentVariable PYTHONPATH=.

以及

$env PYTHONPATH=.

但都没有成功。在这两种情况下,我都收到了UnexpectedToken错误。

英文:

On a Linux session I can set an environment variable like

export PYTHONPATH=.

How to do that on a windows Powershell? I found THIS and tried

 [Environment]::SetEnvironmentVariable PYTHONPATH=.

and

$env PYTHONPATH=.

but neither did not work. In both cases I got an error UnexpectedToken.

答案1

得分: 2

$env:PYTHONPATH = $pwd

你在上一个版本中忘记了一个冒号。此外,这里不起作用的是点号“.”,但你可以使用内置变量$pwd(当前目录)。

我发现**$env:NAME**是在Powershell中获取环境变量的最简单方式。它还遵循微软的文档:about_Environment_Variables

英文:
$env:PYTHONPATH = $pwd

You forgot a colon in the last version. Also the . doesn't work here, but you can use the built-in variable $pwd (current directory).

I find $env:NAME the easiest way to get environment variables in Powershell. It also follows the Microsoft documentation: about_Environment_Variables.

huangapple
  • 本文由 发表于 2023年7月24日 16:29:05
  • 转载请务必保留本文链接:https://go.coder-hub.com/76752653.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定