A script that draws/creates a picture in Excel using only cells.
VIDEO TUTORIAL/EXPLANIATION:
https://www.youtube.com/watch?v=aRpksc7CA9E
Note: This tutorial assumes you have:
- Python 3.9.5
- pip3
- Visual Studio Code (VSC)
-
Change default profile within VSC:
- CTRL + SHIFT + P
- Search "Terminal: Select Default Profile"
- Click "Command Prompt"
-
Create and activate the virtual environment + install library (run commands in a new CMD terminal)
- py -m venv venv
- (Creates virtual environment)
- venv\Scripts\activate
- (activates virtual environment)
- python -m pip install --upgrade pip
- (Upgrade pip in virtual environment)
- pip3 install -r requirements.txt
- (Install the required libraries for this project)
- py -m venv venv