Skip to content

Instantly share code, notes, and snippets.

View lucazav's full-sized avatar
💭
Earning the Udacity Azure Machine Learning Engineer Nanodegree certification

Luca Zavarella lucazav

💭
Earning the Udacity Azure Machine Learning Engineer Nanodegree certification
View GitHub Profile
@feaselkl
feaselkl / sqldb-demo.ipynb
Created March 19, 2021 22:39
Read from Azure SQL Database in Azure Machine Learning and subsequently writing back to Azure SQL Database
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@lucazav
lucazav / conda-environment-management.sh
Last active April 29, 2025 08:28
[Conda - Environments] Conda environments management #conda
# CHEAT SHEET
# https://docs.conda.io/projects/conda/en/4.6.0/_downloads/52a95608c49671267e40c689e0bc00ca/conda-cheatsheet.pdf
# Get a list of all my environments, active environment is shown with *
conda env list
# Create an environment with Python
conda create --name py39 python=3.9 ipykernel
# Add environment to Jupyter
@maximlt
maximlt / run_python_script_in_conda_env.bat
Last active October 21, 2025 12:57
Run a Python script in a conda environment from a batch file
@echo OFF
rem How to run a Python script in a given conda environment from a batch file.
rem It doesn't require:
rem - conda to be in the PATH
rem - cmd.exe to be initialized with conda init
rem Define here the path to your conda installation
set CONDAPATH=C:\ProgramData\Miniconda3
rem Define here the name of the environment