Windows w PIP
Local Installation for Windows
Prerequisites:
- python3
- venv (
pip install venv
) - Check the python installation by typing
python --version
in CMD (Command Prompt). - Alternatively you can execute a selected code from the "raw_code" folder like below:
- TIP: Type
quit()
to exit from the current python shell.
Installation:
- (1) Download the ZIP file from the github repository and extract the contents into a folder. Than simply change the directory to the extracted one:
- (2) Create a python environment as "myenv" or just use a custom name:
- (Checkpoint 1) Check the "myenv" by listing it's contents:
- (3) Activate the environment (Environment name should appear on the left):
- TIP: Type
.\myenv\Scripts\deactivate.bat
to deactivate the current environment and turn back to the base. - (Checkpoint) Check the list of required python libraries:
- (4) Install the required libraries:
- (5) Install the Jupyter Notebook using pip command:
- (6) Run the Jupyter Notebook and visit the locally hosted site (localhost:8888) after that:
- TIP: Press Ctrl+C to shut down the current Jupyter session.
- (7) Find the file with IPYNB extension and double click on it.
- To edit a cell (A block may contain code or makrdown document) double click on it
- To run a cell press Ctrl+Enter
- To swtich the content type of the cell use the dropdown menu on the top menu.