Time to update your computer's Environmental Variables:python
For System Variables, click New. Then add:shell
PYTHONPATH=C:\Python33\Lib\;C:\Python33\Lib\site-packages\
Select the System Variable PATH
, click Edit.app
C:\Python33;C:\Python33\Lib\site-packages\PyQt4\bin;
to the front of it, like so: PATH=C:\Python33;C:\Python33\Lib\site-packages\PyQt4\bin;etc.
Download and run distribute_setup.py which will install distribute
package, which provides easy_install
tool.ide
Time to install additional Python libraries.ui
cmd
then cd \Python33\Tools\Scripts
.Enter:spa
easy_install Pygments easy_install ElementTree easy_install Markdown easy_install docutils easy_install Markups
Download and unpack ReText.net
ReText\icons
foldercmd
then cd to the ReText folder. Then enter: python3 retext.py
If you wish to ReText to have a Shortcut to start it. Then you can pin it to your Start menu, copy to your Desktop or Quick Launch, etc.code
C:\python33\pythonw.exe
retext.py's path
; Run = minimized ; Change Icon (to whatever you like).If you wish for the python shell box to not appear, you should follow the USB Stick Batch file instructions at the moment.orm
C:\python33
to USB Stick, say U:\python33
Create the following BAT file: retext.bat
ip
REM ReText Startup batch file REM ------------------------- REM determine drive letter of batchfile for /f "delims=\" %%d in ('cd') do set curdrv=%%d echo %curdrv% REM Set ENVs using current drive letter if ENVs not set for USB Sticks REM REM them out if you have the ENVs set set PYTHONPATH=%curdrv%\Python33\Lib;%curdrv%\Python33\Lib\site-packages set PATH=%curdrv%\Python33;%curdrv%\Python33\Lib\site-packages\PyQt4\bin;%PATH% REM Start ReText start /B %curdrv%\Python33\pythonw.exe %CD%\retext.py
Right-click drag-n-drop the retext.bat and select "Create shortcuts here"
easy_install
requires an internet connection. You're on your own dealing with a proxy. As there's really no Registry Entries, you could install else where and copy to USB Stick and create the batch file.