This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aaron-bond.better-comments | |
albymor.increment-selection | |
AntiAntiSepticeye.vscode-color-picker | |
apollographql.vscode-apollo | |
aslamanver.vsc-export | |
bradgashler.htmltagwrap | |
bradlc.vscode-tailwindcss | |
burkeholland.simple-react-snippets | |
christian-kohler.path-intellisense | |
dbaeumer.vscode-eslint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Create 2 dirs: **virtual_envs** and **pyvers** | |
2. Download the Python version you want to use. | |
3.Run the python.exe | |
**IMPORTANT:** UNCHECK "Add Python to PATH" | |
4. Click "Customize Installation" | |
5. Click "Next" unless you want to modify the options. I uncheck "Documentation" but it's up to you |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
I think I fixed the libcairo2-dev error by running zypper install cairo-devel. Now getting this: | |
''' | |
(beeware37) rawrbear@linux:~/sandbox/beeware> python -m pip install --pre beeware | |
Collecting beeware | |
Using cached beeware-0.3.0.dev3-py2.py3-none-any.whl (3.1 kB) | |
Collecting briefcase>=0.3.0.dev3 | |
Using cached briefcase-0.3.0.dev8-py2.py3-none-any.whl (53 kB) | |
Collecting toga>=0.3.0.dev17 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
A simple test area for me to learn to use Beeware | |
""" | |
import toga | |
from toga.style import Pack | |
from toga.style.pack import COLUMN, ROW, CENTER | |
class TestGUI(toga.App): |