Reputation: 5823
So, I have installed the pypy pre-built interpreter to my home folder in windows; however, it only allows me to execute python scripts through the interpreters interface (similar to IDLE). I would like to extend this functionality to the cmd line in windows by putting something referencing the pypy interpreter to my system's PATH, however, I cannot find any documentation about this.
Upvotes: 0
Views: 1357
Reputation: 114008
to add to your path just open your start menu
right click on "Computer"
select "Properties"
click option for "Advanced System Settings"
click option for "environmental Variables"
change the one named "PATH" to include the folder that you need
Upvotes: 0
Reputation: 7601
Just add folder with pypy.exe to your PATH. Here you can read documentation about pypy command line.
Upvotes: 2