Skip to content

Commit a17dd23

Browse files
committed
deploy: d375a3e
1 parent 1f52097 commit a17dd23

16 files changed

+117
-16
lines changed

.doctrees/environment.pickle

1.51 KB
Binary file not shown.

.doctrees/setup.doctree

10.7 KB
Binary file not shown.

_sources/setup.rst.txt

Lines changed: 51 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,33 @@ If you want to use UniversalPython for real projects or contribute to language p
3838

3939
Follow these steps carefully — this guide assumes no prior Python experience.
4040

41-
**1. Install Python 3.14 or newer**
41+
**1. Install Visual Studio Code (Code Editor)**
42+
-----------------------------------------------
43+
44+
1. Navigate to **Visual Studio Code download page** `<https://code.visualstudio.com/Download>`_
45+
46+
.. image:: _static\\Visual_Studio_Code_Downloads_Page.png
47+
48+
2. Download the installer that matches your operating system (Windows, macOS, or Linux)
49+
50+
3. Once the installer is downloaded, open it to start the installation process
51+
52+
4. After installation, open **Visual Studio Code**
53+
54+
**2. Install Python 3.14 or newer**
4255
-----------------------------------
4356

4457
Download and install Python from the official website:
4558

4659
- **Download Page:** `<https://www.python.org/downloads/>`_
4760

61+
.. image:: _static\\Python_Downloads_Page.png
62+
4863
During installation:
49-
- ✅ Check the box that says **"Add Python to PATH"**.
50-
- 🪟 On Windows, use **PowerShell** or **Command Prompt** to run commands.
51-
- 🍎 On macOS or Linux, use **Terminal**.
64+
65+
- Check the box that says **"Add Python to PATH"**.
66+
- On Windows, use **PowerShell** or **Command Prompt** to run commands.
67+
- On macOS or Linux, use **Terminal**.
5268

5369
Once installed, verify Python is available by running:
5470

@@ -62,7 +78,7 @@ You should see something like:
6278
6379
Python 3.14.0
6480
65-
**2. Verify pip is installed**
81+
**3. Verify pip is installed**
6682
------------------------------
6783

6884
`pip` is Python’s package manager. It should be included with modern Python installations.
@@ -100,6 +116,36 @@ After installation completes, test that UniversalPython is working:
100116
101117
If you see the UniversalPython help menu, you’re ready to start coding!
102118

119+
Using UniversalPython in Visual Studio Code
120+
===========================================
121+
122+
1. Create a new folder
123+
124+
2. Open the folder in Visual Studio Code
125+
126+
- Open Visual Studio Code
127+
- From menu bar go to File and select Open Folder...
128+
129+
.. image:: _static\\Visual_Studio_Code_File_Open_Folder.png
130+
131+
- Select the folder you created
132+
- Create a new file with this format: `<file_name>.<language_code>.py`
133+
134+
.. image:: _static\\Visual_Studio_Code_New_File.png
135+
.. image:: _static\\Visual_Studio_Code_New_File_Name.png
136+
137+
- Write some code
138+
139+
.. image:: _static\\Visual_Studio_Code_New_File_Code.png
140+
141+
- To execute the code, open the terminal and run this command: `python <file_name>.<language_code>.py`
142+
143+
.. image:: _static\\Visual_Studio_Code_Terminal.png
144+
.. image:: _static\\Visual_Studio_Code_New_Terminal.png
145+
.. image:: _static\\Visual_Studio_Code_Execute_In_Terminal.png
146+
.. image:: _static\\Visual_Studio_Code_Execute_In_Terminal_Output.png
147+
148+
103149
Using UniversalPython in Jupyter Notebook
104150
=========================================
105151

_static/Python_Downloads_Page.png

287 KB
Loading
100 KB
Loading
51.3 KB
Loading
54.1 KB
Loading
102 KB
Loading
49.9 KB
Loading
44.7 KB
Loading

0 commit comments

Comments
 (0)