Verifique se possui o python 3.6 executanto:
python3.6 -VSe não estiver instalado então neste link pode fazer o download:https://www.python.org/downloads/
| #!/bin/bash | |
| # Author: Marco Carletti | |
| # Date: May 2022 | |
| # Version: 0.2.0 | |
| # Last update: July 17, 2023 | |
| # Changed comments, tested versions and added other distros info, such as Debian and Fedora. | |
| # Thanks to everyone for comments, suggestions, fixes and testings! |
Verifique se possui o python 3.6 executanto:
python3.6 -VSe não estiver instalado então neste link pode fazer o download:https://www.python.org/downloads/
| You can open sublime text from command line with subl.exe and subl. The second one has a problem. If sublime text is not open already, | |
| when you open sublime text with subl, the command prompt will wait until sublime text is closed. So, you cannot do anything else in | |
| terminal, unless you open another terminal. This is useful in some cases. But sometimes its a pain. | |
| Method 1: Open with subl.exe | |
| 1. Go to Control Panel > Advanced System Settings -> Advanced -> Environment Variables | |
| 2. Create a new system variable called SUBLIME that will point to the folder of your Sublime installation. | |
| Variable Name: SUBLIME | |
| Variable Value: C:\Program Files\Sublime Text 3 |
| > Regular Expressions Cheat Sheet | |
| > A regular expression specifies a set of strings that matches it. This cheat sheet is based off Python 3's Regular Expressions (http://docs.python.org/3/library/re.html) but is designed for searches within Sublime Text. | |
| > Special Characters | |
| \ Escapes special characters or signals a special sequence. | |
| . Matches any single character except a newline. | |
| ^ Matches the start of the string. | |
| $ Matches the end of the string. | |
| * Greedily matches 0 or more repetitions of the preceding RE. | |
| *? Matches 0 or more repetitions of the preceding RE. |