The names of the settings are derived from the long command line option
Expected in APPDATA
Open an explorer and write: %APPDATA%\pip\pip.ini , if it does not exist, create it.
| { | |
| "recommendations": ["exiasr.hadolint"] | |
| } |
| """ | |
| Notes | |
| - `france` est de type Pandas dataframe | |
| - on passe en pourcentage les valeurs pour comparer les départements | |
| pourcentage = (nb tranche d'age pour un departement) / (nombre total de personne dans un departement) | |
| """ | |
| france[france.departements.isin(['59', '75', '67'])] | |
| ax = sns.barplot(x="departements", | |
| y="pourcentage", | |
| hue="tranche", data=france) |
| # Do not check paths including `/tests/`: | |
| # they use `assert`, leading to B101 false positives. | |
| exclude_dirs: | |
| - '/tests/' | |
| - '/.venv/' | |
| - '/k8s/' | |
| - '/test*' | |
| skips: | |
| - 'B101' |
| ##https://microk8s.io/docs | |
| #https://medium.com/google-cloud/microk8s-on-google-cloud-platform-d8b7a71a3ef | |
| INSTANCE=microkube | |
| ZONE=europe-west1-b | |
| gcloud compute instances create ${INSTANCE} \ | |
| --machine-type=e2-standard-2 \ | |
| --preemptible \ | |
| --zone=${ZONE} \ | |
| --tags=microk8s \ | |
| --metadata enable-oslogin=TRUE \ |
| # Install helm | |
| curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash | |
| helm repo add jupyterhub https://jupyterhub.github.io/helm-chart/ | |
| helm repo update | |
| # Deploy jupyterhub | |
| RELEASE=jhub | |
| NAMESPACE=default | |
| helm upgrade --install $RELEASE jupyterhub/jupyterhub \ | |
| --namespace $NAMESPACE \ | |
| --version=0.9.0 \ |
The names of the settings are derived from the long command line option
Expected in APPDATA
Open an explorer and write: %APPDATA%\pip\pip.ini , if it does not exist, create it.