在 Windows 7 上安装 JDK 和 Python 并设置 PATH 变量
我最近在我的Windows 7系统中安装了Java的JDK和Python。我想从命令行(无论是 cmd 还是 cygwin)访问这两个程序,因此我使用了 PATH 全局变量并输入了 JDK 的路径。我该怎么做才能通过 PATH 访问 python 和 JDK?我现在所做的是每次更改 PATH 变量。 谢谢
I recently installed Java's JDK and Python in my Windows 7 system. I wanted to access both programs from the command line (whether it be cmd or cygwin) so I used the PATH global variable and entered the path to my JDK. What can I do so that python and JDK are accessed by PATH? What I am doing now is changing the PATH variable every time.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我很困惑。您是否要切换 JDK 和 Python 之间的路径?如果是这种情况,您可以在系统的
PATH
变量中设置这两个路径。示例:C:\jdk-install\;C:\python-install
I'm confused. Are you switching out the paths between the JDK and Python? If that's the case, you can have both paths set in your system's
PATH
variable. Example:C:\jdk-install\;C:\python-install
请注意,只有更改路径后启动的进程才会看到更改。
Note that only processes started after you change the path will see the change.