I just recently came across PTVS
which provides a pretty killer environment for Python development. I was most excited when I found this because it seems that it could provide a clean and user friendly environment to develop and debug Raspberry Pi
programs within Visual Studio
. As stated by the developers,
Python Tools already provides a number of facilities to debug apps launched from the IDE itself, as well as attaching to existing Python processes on both local and remote machines. However, these all only work if the process being debugged is running on a Windows PC, and attaching remotely also requires the Visual Studio Remote Debugging Monitor (MSVSMon) to be running on the remote PC. For situations when your app is running on a different operating system, such as Linux or OS X, or when you do not have permissions to install or run MSVSMon on a Windows machine, Python Tools 2.0 adds an alternative remote debugging option that does not require any separate processes, and runs on any OS capable of running Python itself.
So as I understand, and correct me if I'm wrong, but this tool would allow a developer to develop and debug Python applications remotely through Visual Studio on the Raspberry Pi itself.
Even if this isn't the case, it seems that the support for this tool is pretty solid, and I really excited to see all of the features that it has to offer. With that being said, I'm trying to move my Pi development along, but I am having trouble installing the RPi.GPIO Python module
. I'm not too familiar with installing Python modules through Windows.
What I've done so far:
- Installed
distribute
- Installed
pip
- Added
C:\Python 3.3\Scripts
to my Path environment variable.
So in the Scripts folder I have:
- easy_install.exe
- easy_install-3.3.exe
- pip.exe
- pip-3.3.exe
Along with the executables are the corresponding python scrips (pip-script.py, pip-3.3-script.py, etc..). What do I need to do to install extra Python modules and use them within the PTVS environment?