Posts

Showing posts from May, 2021

Run python in Sublime

Add Sublime to windows right menu Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\*\shell\SublimeText3] @="Edit with Sublime Text3" "Icon"="C:\\Program Files\\Sublime Text 3\\sublime_text.exe,0" [HKEY_CLASSES_ROOT\*\shell\SublimeText3\command] @="C:\\Program Files\\Sublime Text 3\\sublime_text.exe %1" [HKEY_CLASSES_ROOT\Directory\shell\SublimeText3] @="Edit with Sublime Text3" "Icon"="C:\\Program Files\\Sublime Text 3\\sublime_text.exe,0" [HKEY_CLASSES_ROOT\Directory\shell\SublimeText3\command] @="C:\\Program Files\\Sublime Text 3\\sublime_text.exe %1" Sublime proxy Sublime use windows system proxy setting, if want to install package, need set windows 10 system proxy. Suggest install package Tabnine

Run Python in VsCode

To create a virtual environment python -m venv .venv Then click and open a python file. It will active the new virtual environment.