Maison  >  Article  >  développement back-end  >  Comment démarrer Python ou IPython avec des packages pré-importés.

Comment démarrer Python ou IPython avec des packages pré-importés.

王林
王林original
2024-08-23 06:03:38337parcourir

Instead of every time you execute python or ipython, have to write "import os" or other common packages, this script will start python with these packages imported

#!/usr/bin/env bash
# -------------------------------------------------------------
#  Calls ipython or python3 with multiple packages imported
# -------------------------------------------------------------

if [[ -z "$1" ]] || [[ -f "$1" ]]; then
    [[ -n "$(command -v ipython3)" ]] && EXEC="ipython3" || EXEC=python3
    TMP_PY=/$TMPDIR/$EXEC.py
    printf "import os, re, sys, math, datetime, yaml\n" >$TMP_PY
    $EXEC -i $TMP_PY "$@"
else
    python3 "$@"
fi

How to start python or ipython with packages pre-imported.

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn